change color of hyperlinks

Discussion in 'Local Business WordPress Theme' started by feisalhensbergen, Aug 16, 2013.

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

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    body a {
    color: red!important;
    }
     
    body a:hover {
    opacity: 0.5!important;
    }
     
     
    #menu li:hover a, #menu li.current_page_item a{
    color: white!important;
    }
    #menu .ddsmoothmenu li a{
    color: white!important;
    }
    #menu .ddsmoothmenu li a:hover{
    opacity: 1!important;
    }
    
    Inplace of "red" you can put your color or color code.
    This will solve your issue.
     
  3. feisalhensbergen

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
    thanks! ive received a piece of code from one of my colleagues here which i now have used.

    the color used is:
    #6596ce

    one last question: how do i change the link color only in the three home page feature descriptions?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
    .feature_content a {
    color: red;
    }
     
  5. feisalhensbergen

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
Thread Status:
Not open for further replies.

Share This Page