Change Color of Links

Discussion in 'Woodpecker WordPress Business Theme' started by mtmccray, Feb 2, 2015.

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

    mtmccray New Member

    Joined:
    Feb 5, 2013
    Messages:
    10
    Likes Received:
    0
    I would like to change the links in my site form gray to blue

    Please provide me with custom css code to do this.

    Thanks
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey,

    Please provide us url of your website.

    Thanks
    Praveen
     
  3. mtmccray

    mtmccray New Member

    Joined:
    Feb 5, 2013
    Messages:
    10
    Likes Received:
    0
    My site url is www.chelseainsurancegroup.com
    but that wont allow you to see anything as the Woodpecker theme is not the active theme at this point, im still tweaking it.

    Is there not a simple css code which will allow for a hyperlink in the text change color to blue?

    Thanks
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

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

    Code:
    a {
    color: blue !important;
    }
    Thanks,
    Praveen
     
  5. mtmccray

    mtmccray New Member

    Joined:
    Feb 5, 2013
    Messages:
    10
    Likes Received:
    0
    This worked, thank you

    But one thing, it changed the color of all of my links even in the menus, how can i change it only in the content of pages/posts and leave the menus as they are?

    Thanks
     
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

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

    Code:
    ul#menu li a {
    color: white !important;
    }
    Thanks,
    Praveen

     
  7. mtmccray

    mtmccray New Member

    Joined:
    Feb 5, 2013
    Messages:
    10
    Likes Received:
    0
    ok so that fixes the menu, what about the widgets, footer, buttons, Tap to call button, Wordpress admin panel across the top, Titles in 3 feature area on home page? I would like for all of these to stay the color in the theme.
    Perhaps there is a better way to edit the color of the links in text of pages and posts only, whi9le leaving all other link colors alone?

    Thanks
     
  8. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Please remove the above code and paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .page-post-container-wrapper .col-md-16 a {
      color: red !important;
    }
    
    Change color according to your requirement.

    Thanks & Regards
    Pramod
     
  9. mtmccray

    mtmccray New Member

    Joined:
    Feb 5, 2013
    Messages:
    10
    Likes Received:
    0
    Perfect, thank you!
     
  10. mtmccray

    mtmccray New Member

    Joined:
    Feb 5, 2013
    Messages:
    10
    Likes Received:
    0
    ok this works on my blog posts and pages that use the default template, but full width template pages do not work

    getting much closer though, thanks
     
  11. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    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 .col-lg-24 .page a {
      color: green !important;
    }
    

    Change color according to your requirement.

    Thanks & Regards
    Pramod
     
  12. mtmccray

    mtmccray New Member

    Joined:
    Feb 5, 2013
    Messages:
    10
    Likes Received:
    0
    thank you, again!
     
Thread Status:
Not open for further replies.

Share This Page