Roadfighter css stuck

Discussion in 'RoadFighter WordPress Theme' started by mybrainsells, Aug 27, 2013.

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

    mybrainsells New Member

    Joined:
    Dec 28, 2011
    Messages:
    17
    Likes Received:
    0
    I have a client that wanted to change most of the theme colors to match her decor and I am stuck trying to figure out what the css would be for the areas shown in this image http://screencast.com/t/o02zk7ay
    I am trying to change the very top border, the footer, the testimonial box and the borders on the menu and call button. Any help would be greatly appreciated
     
  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:
    .header_container {
    border-top: 9px solid red;
    }
    .menu-wrapper {
    border: 3px solid red;
    }
    .header_wrapper .call-us {
    border: 1px solid blue;
    -moz-box-shadow: 2px 2px 5px 0px red;
    -webkit-box-shadow: 2px 2px 5px 0px red;
    box-shadow: 2px 2px 5px 0px red;
    }
     
    .feature_testimonial p {
    background: red;
    border: 2px solid blue;
    }
    .footer_container {
    background: red;
    border-bottom: 1px solid blue;
    }
    In place of "red" and "blue" you can put your color or color code.
    This will solve your issue.
     
  3. mybrainsells

    mybrainsells New Member

    Joined:
    Dec 28, 2011
    Messages:
    17
    Likes Received:
    0
    Thank you Piyush, that worked
     
Thread Status:
Not open for further replies.

Share This Page