Change title color

Hello,

Is it possible to change the color of the website title? (I still have default green color)

I have managed to change the colors of all links and elements except the title…

I am new to using Wordpress and customising themes. Sorry if this is a really basic question.

Many thanks

Hi @aeromania,

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

You can try changing it by adding the following CSS code in the Custom CSS option of your theme on the below path.

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

.navbar #logo a.navbar-brand {
  color: #fff;
}

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

Thank you works perfectly!

You are most welcome here :slight_smile: