CHANGE COLOR IN FEATURED AREA

Discussion in 'Woodpecker WordPress Business Theme' started by lbclogos, Jun 10, 2014.

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

    lbclogos Guest

    Joined:
    May 14, 2014
    Messages:
    1
    Likes Received:
    0
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Joseph,

    For button color paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .button-def {
    -moz-box-shadow: inset 0px 1px 0px 0px ADD YOUR COLOR VALUE;
    -webkit-box-shadow: inset 0px 1px 0px 0px ADD YOUR COLOR VALUE;
    box-shadow: inset 0px 1px 0px 0px ADD YOUR COLOR VALUE;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, ADD YOUR COLOR VALUE), color-stop(1, ADD YOUR COLOR VALUE) );
    background-color: ADD YOUR COLOR VALUE;}
    }
     
    .button-def:hover {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, ADD YOUR COLOR VALUE), color-stop(1, ADD YOUR COLOR VALUE) );
    background: -moz-linear-gradient( center top, #4d648f 5%, ADD YOUR COLOR VALUE 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d648f', endColorstr='ADD YOUR COLOR VALUE');
    background-color: ADD YOUR COLOR VALUE;}
    
    For slider text paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .slide-h1{
    color:ADD YOUR COLOR VALUE;
    }
    For page color.

    Code:
    p{
    color:  ADD YOUR COLOR VALUE;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. designstouch

    designstouch Member

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

    .button-def { changes not taking place.

    Firebug shows the changes and works however, same code does not work when I apply it to the custom css. Below is the code I have applied also, tried the one you have mentioned above still now luck, Could you please help me out? here is the url http://332.d3a.myftpupload.com/

    .button-def {
    background: -moz-linear-gradient(center top , #a1ca2d 5%, #506d06 100%) repeat scroll 0 0 #a1ca2d;
    border: 1px solid #506d06;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    max-width: 100%;
    padding: 10px 35px;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    }

    I want buttons to be green like menu color but keeping the same shades from little darker green to light green.

    Thanks!

    Nirav
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Nirav,

    You have missed '}' after code
    Code:
    .slide-button {
        background-color: #81B104;
    
    In the custom css. Please correct it and then try css code provided in the post above. I hope it will work. [/CODE]

    missed.png

    Thanks & Regards
    Nitesh Raghuwanshi
     
  5. designstouch

    designstouch Member

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

    Thank you so much!!
     
Thread Status:
Not open for further replies.

Share This Page