Steven Kryger
asked 10 years ago

I’m trying to replicate the secondary menu, but can’t work out how to get a category + sub-category heading.

1 Answers
DominicStaff
answered 10 years ago

To resolve this issue, you can add the following code to the style.css file:

.navbar .nav { 
    background: #ff0000;
}
.navbar-inverse .navbar-inner {
    background: #ff0000;
}
.navbar .nav > li > .sub-menu > li {
    background: #000;
}
.navbar .nav > li.has-sub-menu:after {
   border-color: #000;
}
.navbar .nav > li > .sub-menu a {
    color: #fff;
}
.navbar .nav > li > .sub-menu li .sub-menu > li {
    background: #000;
}
.navbar .nav > li {
    border-color: #fff;
}

– If you still face there issue, you can send me a screenshot for further checking. 
Hope this helps !

Steven Kryger
replied 10 years ago

Thank you. In WP, how do I set which are the category headers, and which are the sub-headers?

Powered by DW Question & Answer Pro