For some reason, the site title is only showing when moused over (it wasn’t like that before). Actually, you can barely see it…like it’s using nearly the same color as my background. How can I fix this?!?
Hi @thirdofnine,
I hope you are well today and thank you for your question.
You can fix it changing its color by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS
a.navbar-brand {
color: #000;
}
a.navbar-brand:hover {
color: #1e73be;
}
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
That worked great, thank you for the prompt response!
You are most welcome here