Change link colour

Discussion in 'Infoway WordPress Theme' started by bjoernjohansen, Oct 26, 2013.

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

    bjoernjohansen New Member

    Joined:
    Apr 3, 2013
    Messages:
    22
    Likes Received:
    0
    Location:
    Denmark
    I would like to change the link colour everywhere on my site to FF6600. How do I do that?

    Best regards

    Bjørn Johansen
     
  2. 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:
    a {
    color: #ff6600 !important;
    }
    In place of "#ff6600 " you can put your color or color code.
     
  3. bjoernjohansen

    bjoernjohansen New Member

    Joined:
    Apr 3, 2013
    Messages:
    22
    Likes Received:
    0
    Location:
    Denmark
    Thanks, it worked like a charm, as per what I asked for.

    Is there a way make only links on pages and in posts orange. I discovered that the links in the orange footer also went orange - making it impossible to read the link texts. And the same goes for button links. top menu etc. http://www.bjoernjohansen.dk (for reference)
     
  4. Gourav

    Gourav Support Staff

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

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

    Code:
    .feturebox .featurebox_inner .featurebox_desc h2 a {
    color: orange;
    }
    .content-bar.sample a {
    color: orange;
    }
     
    .post_content.single a {
    color: orange;
    }
    
     
  5. bjoernjohansen

    bjoernjohansen New Member

    Joined:
    Apr 3, 2013
    Messages:
    22
    Likes Received:
    0
    Location:
    Denmark
    Thanks again. Worked neatly
     
Thread Status:
Not open for further replies.

Share This Page