How Can I Add Contact Info to Upper Right Side of Header?

Discussion in 'BizWay WordPress Theme' started by Eric, Mar 9, 2015.

  1. Eric

    Eric New Member

    Joined:
    Dec 28, 2011
    Messages:
    25
    Likes Received:
    1
    I would like to add contact info (Business name, phone number and address) the the upper righthand side of this site that is using the Bizway theme: http://familytherapistsb.com.

    I suppose that would be possible to do my editing the header's php code, but I'm not sure what code to add exactly. I would like to get some advice on this matter if possible.

    Thanks.
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi Eric!

    Please follow the screenshot given below.
    bizway_add_info_at_top-right-corner.png

    HTML:
    <div class="top_right_corner">
    <p>Business Name</p>
    <p class="phone_number">Phone Number : <span>000-000-000</span></p>
    <p class="Address">Address</p>
    </div>
    Now paste the css code given below in custom css section.
    Code:
    .top_right_corner {
    float: right;
    margin-top: -100px;
    line-height: 0.2;
    }
    Thanks,
    Praveen
     

Share This Page