Change the text color of navbar on Blog pages ONLY

Hello,
Is it possible to change the color of the text in the navbar ONLY on blog pages and not the rest of the website?

Hello @Magnifyre,

Thanks for writing in!

Please add following CSS under X > Theme Options > CSS:

.blog .x-navbar .desktop .x-nav > li > a {
    color: #ddd;
}

.blog .x-navbar .desktop .x-nav > .current-menu-item > a {
    color: #ededed;
}

.single-post .x-navbar .desktop .x-nav > li > a {
    color: #ddd;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

That worked, thank you so much! Thank you also for pointing me to those tutorials. Much appreciated!

You’re more than welcome, glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.