remove hyperlink color in footer area

Discussion in 'Traffica WordPress Theme' started by vesity, Oct 26, 2013.

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

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Hi. How do I disable the default hyperlink color in the footer areas, such as first, second, third and fourth footer widget areas? I tried adding html code (<font color="#ffffff">) but it didn't work. I'd like for it to stay the same color, in this case white.
     
  2. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    I'm sorry I did not communicate this correctly... The blue that is now used as the hyperlink color, please make that the hover color (mouse-over) instead. Otherwise, the hyperlink text should be white. Thank you.
     
  3. 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:
    .footer_widget  a {
    color: white;
    }
    .footer_widget a:hover {
    color: red;
    }
    
    In place of "white" and "red" you can put your color or color code.
    This will solve your issue.
     
  4. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Perfect, thank you!
     
Thread Status:
Not open for further replies.

Share This Page