change link colors

Discussion in 'ButterBelly WordPress Theme' started by krwilliams10, Sep 5, 2014.

  1. krwilliams10

    krwilliams10 New Member

    Joined:
    Aug 7, 2014
    Messages:
    6
    Likes Received:
    0
    I have several links in my posts and pages and I want them to visibly be a different color so people know that they are clickable. How do I do this?
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Give a class to all link that you want to visible by a different color like as--
    <a href="" class="implink">Hello</a>
    <a href="" class="implink">Hi</a>
    <a href="" class="implink">Demo</a>

    And then apply CSS on all link as--
    Code:
    a.implink{
    color:red;
    }
    That will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page