Hey there,
Please post a link to your site. Thanks!
I hope you are going to be satisfied with the solution, If you are, you can accept the answer with a green tick. Then you can give
the ul a id in the submenu something like this
<li><a href="brand.html">Brand</a>
<ul id="submenu">
<li><a href="#">AAAAAA</a></li>
<li><a href="#">BBBBBB</a></li>
</ul>
</li>
CSS
#submenu li a
{
color:green;
}
OR This is the CSS to change the dropdown menu style/color..
.navbar-default .navbar-nav .open .dropdown-menu>li>a, .navbar-default .navbar-nav .open .dropdown-menu {
background-color: #3344ff;
color:#ffffff;
}
-
This reply was modified 9 years, 5 months ago by
prosper salama.
-
This reply was modified 9 years, 5 months ago by
Jose Castaneda. Reason: added backticks for code