Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hi,
I have a site title which is the name of the website on the front page and it is currently the default grey. How do I change the colour of this title?
Also, I am using the front page with the 3 columns with an icon, heading and text in each. I have updated the colours of the icon and the font of the headings but cannot find where I change the colours of the headings.
Thanks
Vanessa
Hi Redsyrah
You can fix/change this with some custom CSS. If you navigate to AppearanceCustom CSS, you’ll get our custom CSS editor. Just add the following code.
/* Site Title */ header#masthead .hgroup h1 { color: #666666; } /* Circle Icon Heading Color */ .widget_circleicon-widget .circle-icon-box h4 { color: #3b3b3b !important; }You might also need to install the SiteOrigin CSS Editor.
Thanks very much.
Is it also possible to increase the size of the Circle Icon Headings?
Sure. Just add a font-size declaration to the h4 rule.
/* Circle Icon Heading Color */ .widget_circleicon-widget .circle-icon-box h4 { color: #3b3b3b !important; font-size: 20px; }