Change colour of Hyperlink on Left Column

Discussion in 'Nutrition WordPress Theme' started by bizzyboy, Apr 13, 2014.

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

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Within the Homepage Two Cols I would like to make the Hyperlinks in the Left Column Description the colour Blue.
    I do not want any other link colours to change, just those in the Left Column.

    Thanks
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .feature_content p a {
    color: blue;
    }
    .feature_content p a:hover {
    color: lightblue;
    } 
    In place of "blue" and "lightblue" you can put your color or color code.
    This will solve your issue.
     
  3. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Thanks, but for some reason the code you gave me only works for 1 of the 2 hyperlinks that I have within the Left Column Description.

    If you look at my site regalgoldaffiliateguy(dot)com you will see 2 hyperlinks that use the Anchor Text 'Click Here to see example earnings'. The first one works as expected but the 2nd hyperlink lower down the page remains on the default colour?

    Can you please help to rectify this problem.

    Thanks
     
  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:
    div.feature_content strong a {
    color: blue;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  5. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Thanks, that works perfectly.
     
Thread Status:
Not open for further replies.

Share This Page