Drop down menu hover color

Discussion in 'Appointway WordPress Theme' started by pupwild, Apr 30, 2013.

  1. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    How could i change the drop down menu hover color?





     

    Attached Files:

  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css

    Code:
    #menu .ddsmoothmenu li li a:hover {
    background: red;
    }
    #menu .ddsmoothmenu li li:hover {
    background: red;
    }
    You can change the color according to your requirement

    This will solve your problem.

    Thanks.
     
  3. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    this did not work too well, it is changing the tab color in the drop down, i want the words to change to a different color, not the tab when you highlight it.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your custom css
    Appearance -> theme options -> styling options -> custom css
    Code:
    #menu .ddsmoothmenu li li a:hover {
    color:red;
    }
    
    Inplace of 'red' you can put your color or color code.
    This will solve your issue.
     

Share This Page