Change Color of Header/ Logo

Quite basic question but I can’t seem to find it. I need to change the color of the header/logo text. So where it says ‘Dazzling Demo’ on the demo page. Is there a way to do it in the cuztomize settings or do I need to change the css?

Hi @maria90,

I hope you are well today and thank you for your question.

Currently there isn’t any theme settings to change color of it specifically but you can change it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Theme Options -> Other -> Custom CSS

#logo .site-name a {
  color: #81d742;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin