Change Color of Heading in Soma Theme
Hello, I’m having trouble changing the background color of the page heading in the Soma theme. In the Customize settings, I changed the “Headings Color” from red (#dd3333) to gold (#c8a75a). It shows the selected color in the preview window on the right, but after updating and publishing my revisions, it still appears as red.
I’ve even tried changing it in the Additional CSS settings, but it still won’t work:
#page-title {
color: #fff;
margin: 0 0;
background: #c8a75a;
}
What am I doing wrong? Any suggestions?
Replies (2)
-
January 29, 2018 at 4:04 am
Hello, I’m having trouble changing the background color of the page heading in the Soma theme. In the Customize settings, I changed the “Headings Color” from red (#dd3333) to gold (#c8a75a). It shows the selected color in the preview window on the right, but after updating and publishing my revisions, it still appears as red.
I’ve even tried changing it in the Additional CSS settings, but it still won’t work:
#page-title {
color: #fff;
margin: 0 0;
background: #c8a75a;
}What am I doing wrong? Any suggestions?
-
January 29, 2018 at 6:11 am
Hi StudioR,
Try the CSS below
#page-title {
background: #c8a75a !important;
}Best Regards
-
January 29, 2018 at 6:26 am
Yes, that worked! THANK YOU very much!!