How can I change the color of the title of “related articles”?
I have no idea where the green color comes from. In my “theme colors’ is everything correctly set and I do not use green colors. I will like to have the titles in yellow.
Hello,
The related articles title color comes from your theme accent color: https://www.screencast.com/t/sHOKECSo
It depends on the demo you installed though as a theme demo can change the related articles appearance. The news magazine demo for instance has a green color set to the related articles.
Please provide a link to your site so I can inspect it.
Thank you!
Hey Bogdan,
Thanks for your reaction. The theme colors are set with the right colors: http://i63.tinypic.com/308bi0z.png. This is the link to my website https://goo.gl/BdkOFC.
Thanks!
Hello,
It is exactly the news magazine demo style as I suspected. Please use this code to change the colors:
.td-magazine .td_block_template_1 .td-related-title .td-cur-simple-item{
color:#dfcd3a!important;;
}
Add the code in the theme panel-> custom css box.
Thank you!
Thanks a lot, it works! 🙂
When the page is loading in the first seconds the colors in the header are also green and the color of the menu is blue. Is it possible to set them to the right color (yellow) with help of a CSS code?
I made a screendump of it: http://i63.tinypic.com/qxuw01.png
Hello,
CSS works in cascades so when there are more then 1 rewrite of the same color, you will be able to see each change happen especial if your connection is slow. If you load a theme demo that changes the colors that is one rewire and if you change the colors again that would be the second one and already you will be able to see the changes happen on page loading. That is the way css works and there is little to be done about it unfortunately. You can make the changes directly in style.css but you will have to re-add them on each update.
You can see the compiled code in your page source: https://www.screencast.com/t/BddeG11R
You can try to add that code at the bottom of style.css
Thank you!