Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #181778

    Hi,

    I need to change the bg color and font for the DROP DOWN part of the menu ONLY. not the menu itself.

    http://optizign.org/sitepreview/personaltouchdental.com

    Thanks!

    #181785

    Hey optizign13!

    This will do it (add it to Quick CSS):

    #menu-main-menu .sub-menu li a {
    background: #FFF;
    color: #261233 !important;
    }

    Regards,
    Josue

    #181786

    Thanks! how would I change the font?

    #181801

    Hi!

    You can add the font-family property o it:

    #menu-main-menu .sub-menu li a {
    background: #FFF;
    color: #261233 !important;
    font-family: "Georgia";
    }

    Cheers!
    Josue

    #181802

    thanks! one more thing….how to I change the color of the hover link/active link in drop down?

    #181808

    Hi!

    Adding this, another selector:

    #menu-main-menu .sub-menu li:hover a {
    background: red;
    color: white !important;
    }

    Regards,
    Josue

    #181812

    thanks! last thing! what is the code for making the font size bigger for drop down?

    #181844

    Hi!

    That would be font-size:

    #menu-main-menu .sub-menu li a {
    background: #FFF;
    color: #261233 !important;
    font-family: "Georgia";
    font-size: 16px;
    }

    Best regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Change bg color and font of DROP DOWN MENU ONLY, not the main menu.’ is closed to new replies.