Link colour

Discussion in 'Woodpecker WordPress Business Theme' started by anylee, Apr 11, 2014.

  1. anylee

    anylee Guest

    Joined:
    May 31, 2013
    Messages:
    35
    Likes Received:
    1
    Hi I have been looking through the forum to change the link colour of my site to blue instead of grey. I have seen that you recommend to use the following custom css.

    {
    color: blue;
    }

    I have used this and it is not working :(
    Site is www.iaintnosaint.com

    Ta
     
  2. Gourav

    Gourav Support Staff

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

    Could you please explain your problem with the help of screenshot, where you want to change the color, so that we can give you the exact solution.


    Thanks & Regards
    Gourav Shrivastava
     
  3. anylee

    anylee Guest

    Joined:
    May 31, 2013
    Messages:
    35
    Likes Received:
    1
  4. anylee

    anylee Guest

    Joined:
    May 31, 2013
    Messages:
    35
    Likes Received:
    1
  5. 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-page-wt-thumb-container h1 a {
    pointer-events: none;
    }
    
    This will solve your issue.
     
  6. anylee

    anylee Guest

    Joined:
    May 31, 2013
    Messages:
    35
    Likes Received:
    1
    Thanks for that. Now how do I make the images links?
     
  7. Piyush

    Piyush Support Staff

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

    Download the front-page.php file attached with this post and
    replace it with the existing front-page.php file present in the theme directory.
    This will solve your issue.
     

    Attached Files:

  8. anylee

    anylee Guest

    Joined:
    May 31, 2013
    Messages:
    35
    Likes Received:
    1
    I have a lot of custom .php files on the front page.. is there any other way of doing it? Sorry to be a pain.

    Also how do I change the link colours for all the links on other pages (just <p> not H1 etc)
     
  9. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  10. 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:
    .page-post-container-wrapper a {
    color: blue;
    }
    .page-post-container-wrapper .page .page-content a{
    color: blue;
    }
    .sidebar li a {
    color: blue;
    }
    .sidebar a {
    color: blue;
    }
    
    In place of "blue" you can put your color or color code.
    I hope this will solve your issue.
     

Share This Page