How to change color of 3 feature images heading text & buttons color?

Discussion in 'Woodpecker WordPress Business Theme' started by designstouch, Jun 26, 2014.

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

    designstouch Member

    Joined:
    Feb 23, 2013
    Messages:
    133
    Likes Received:
    2
    Hi,

    How to change home page 3 feature images heading text color? Also, would like to change the hover over color too.

    How to change color of tap to call button and bottom default blue color button?

    Thanks,
    Nir
     
  2. Piyush

    Piyush Support Staff

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

    1. To change the color of heading of Three Column Feature section,
    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 {
    color: red;
    }
    .feature-page-wt-thumb-container h1 a:hover {
    color: blue;
    }
    
    In place of "red" and "blue" you can put your color or color code.

    2. To change the color of "tap to call button" and "bottom button",
    paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    a.button-def {
    box-shadow: inset 0px 1px 0px 0px red;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, red), color-stop(1, red) );
    }
    .button-def:hover {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, blue), color-stop(1, blue) ); 
    In place of "red" and "blue" you can put your color or color code.
    This will solve your issue.
     
  3. designstouch

    designstouch Member

    Joined:
    Feb 23, 2013
    Messages:
    133
    Likes Received:
    2
    Hi Piyush,

    Thanks a lot!
     
Thread Status:
Not open for further replies.

Share This Page