Change the call us button

Discussion in 'ColorWay WordPress Theme' started by johnwebtrends, Sep 5, 2013.

  1. johnwebtrends

    johnwebtrends Member

    Joined:
    Sep 4, 2013
    Messages:
    33
    Likes Received:
    0
    I have two isses my site is webtrendsevents.com
    1) I want to change the call us button at the top right to be the same as the Register Now button at the bottom right (and linked to the same page)
    2) I want the colour of that button to be a red button rather than the green /blue it is now.

    Is this possible (I am using Roadfighter Template)
     
  2. Piyush

    Piyush Support Staff

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

    1. For your first issue,
    Go to the header.php file present in your theme directory and add the anchor hyperlink code as shown in the image given below.
    Code:
    <a href="Enter your link here"></a>
    [​IMG]

    This will link the contact button.

    Now,
    paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .header_wrapper .call-us {
    background: red;
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .header_wrapper .call-us {
    background:none;
    }
    }
    @media only screen and (max-width: 480px){
    .header_wrapper .call-us {
    background:none;
    }
    }
    In place of red you can put your color or color code.
    This will solve your issue.


    2. For your second issue,
    paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .bottom_tagline .bottom_tagline_button a, .bottom_tagline .bottom_tagline_button a:hover {
    background: red;
    -khtml-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    }
    
    In place of red you can put your color or color code.
    This will solve your issue.
     
  3. johnwebtrends

    johnwebtrends Member

    Joined:
    Sep 4, 2013
    Messages:
    33
    Likes Received:
    0
    where do i find the correct folder on m cpanel - i have looked into the wp-content and uder themes and all i find is css, functions, images js, languages/
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  5. johnwebtrends

    johnwebtrends Member

    Joined:
    Sep 4, 2013
    Messages:
    33
    Likes Received:
    0
    Thanks but having done this I would like the button on the top right to be the same as the one on the bottom right with the same text. www.webtrendsevents.com
    BTW the button works as you said, it just looks poor.
     
  6. 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_wrapper .call-us p {
    background: none;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    line-height: 13px;
    padding-top: 13px;
    padding-left: 0px;
    }
    .header_wrapper .call-us {
    width: 216px;
    height: 44px;
    }
    
    This will solve your issue.
     

Share This Page