Marko Jaric
asked 11 years ago

I followed your advise from another post, and change the red to blue by adding the CSS below.  It works terrific, but the “Home” in the Super Menu still displays in red.  Also if I click on the “15 Must Read Articles, it displays the Date in Red rather than blue.  Can I add a little more CSS to get these two times to display in blue?

 

<style type=”text/css”>
.news-slider .carousel .carousel-inner .entry-category {
background: #838B8B;
}
.news-slider .carousel-list .other-entry li.active {
border-left-color: #838B8B;
}
.nav-tabs > .active > a:before, .nav-tabs > .active > a:hover:before {
border-top-color: #838B8B;
}
.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
background: #838B8B !important;
}

.btn-danger {
background: #838B8B;
border-color: #838B8B;
}

</style>

5 Answers
DominicStaff
answered 11 years ago

To resolve this problem you can log in to Dashboard > Theme > Customize > General Settings > Add the following code:

<style>
.navbar .nav .current_page_item > a, .navbar .nav .current-menu-item > a, .navbar .nav .current-post-ancestor > a, .navbar .nav .current-menu-parent > a, .navbar .nav .current-menu-ancestor > a {
    color: #...;
}

.desktop .top-news .entry-meta {
    background: #...;
}
</style>

Hope this helps !
Regards,
Dominic

Marko Jaric
answered 11 years ago

Worked perfect.  Thanks!

DominicStaff
answered 11 years ago

please don’t hesitate to contact us if you have further questions.

Hope this helps !
Regards,
Dominic

martywatts
answered 11 years ago

Home button still shows red when you mouse over, how do you set that?

And for the tags that display on the main page, on the articles, they are in red…how do you set that color?

And then once you click into an article, the tags are orange, how do you change those colors?
Thanks,
Marty

DominicStaff
answered 11 years ago

@ Martywatts !

To resolve this issue, you can add the following code:


<style>
.navbar .nav li a:hover, .navbar .nav li a:active, .navbar .nav li a:focus {
     color: #...;
}

.single .site-content > .hentry .post-categories li {
   background: #...;
}

.news-slider .carousel .carousel-inner .entry-category {
  background: #...;
}
</style>
Powered by DW Question & Answer Pro