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].
Hello.
 How to change the font color of text in widgets:
 Title Vantage,
 Round icon?
Hi Дмитрий Москаленко
Thanks for the wait. The color of the site title can be changed by inserting the following at Appearance > Custom CSS:
/* Site Title Color */ header#masthead .hgroup h1 { color: #666666; }For the circle icon widgets you ca make use of the following at Appearance > Custom CSS:
/* Circle Icon Heading Color */ .widget_circleicon-widget .circle-icon-box h4 { color: #3b3b3b; } /* Circle Icon Text Color */ .widget_circleicon-widget .circle-icon-box p.text { color: #5e5e5e; } /* Circle Icon More Link */ .widget_circleicon-widget .circle-icon-box a.more-button { color: #3b3b3b; } .widget_circleicon-widget .circle-icon-box a.more-button:hover { color: #dd3333; }Hope that helps :)