• amcmorrow1984casino

    (@amcmorrow1984casino)


    Hi,
    I’m hoping that someone could tell me how to change the color of the sub-menu dropdown.

    I can’t seem to find where to change this in css or in the theme files.

    Any help is much appreciated.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Suyogya Shukla

    (@themeislesupport)

    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 8 years, 1 month ago by prosper salama.
    • This reply was modified 8 years ago by Jose Castaneda. Reason: added backticks for code
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sub Menu Color’ is closed to new replies.