Can you add a button underneath the Top Right Contact Details on homepage?

Discussion in 'Infoway WordPress Theme' started by rjouejati, Jun 11, 2013.

  1. rjouejati

    rjouejati New Member

    Joined:
    Feb 9, 2013
    Messages:
    10
    Likes Received:
    0
    Hello and thanks for your time. You guys are great at supporting this theme so thank you. My question is, can you add a button underneath the contact details on the homepage? i have taken a screen shot with a red arrow pointing at a button that i would like to be there. Thank you so much.
    [​IMG]
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to header.php present in your theme directory and add the code given below

    Code:
    <div class="buttons"><a href="Enter your link address">Button</a></div>
    Sending image for reference

    [​IMG]


    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .buttons {
    margin-top:100px;
    text-align: right;
    }
    .buttons a {
    color: white;
    font-size: 24px;
    background: gray;
    height: auto;
    width: auto;
    border-radius: 7px;
    }
     
    .buttons a:hover{
    opacity:.8;
    }
    This will solve your issue.
     

Share This Page