Change active and hover colours on links

Discussion in 'Cloriato WordPress Theme' started by appleroad, Apr 6, 2014.

Thread Status:
Not open for further replies.
  1. appleroad

    appleroad Guest

    Joined:
    Apr 5, 2014
    Messages:
    13
    Likes Received:
    0
    Hello, how can I change the colour of both active links, and the hover colour in the side widget bar?

    Also, how can I change the hover colour of links in menu items?

    How can I change the background colour of the drop down links in the menu bar?

    Lastly, I found the code on a previous post to change the hover colour of links in the footer, however this does not work on the Blogroll Links widget. Is there a code for this?

    Thanks!
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    1) For sidebar:
    Code:
    .sidebar li a, .sidebar a {
    color: YOUR COLOR VALUE;
    }
    .sidebar li a:hover, .sidebar a:hover {
    color: YOUR COLOR VALUE;
    }
    2) For menu:
    Code:
    #menu li a:hover{
    color: YOUR COLOR VALUE;
    }
    #menu .ddsmoothmenu li li a:hover{
    color: YOUR COLOR VALUE;
    }
    3) For background:
    Code:
    #menu .ddsmoothmenu li li a{
    background: YOUR COLOR VALUE;
    }
    4) For footer:

    Code:
    .footer a {
    color: YOUR COLOR VALUE;
    }
    .footer li a {
    color: YOUR COLOR VALUE;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. appleroad

    appleroad Guest

    Joined:
    Apr 5, 2014
    Messages:
    13
    Likes Received:
    0
    Thank you very much Nitesh!
     
Thread Status:
Not open for further replies.

Share This Page