Phone number on homepage

Discussion in 'BizWay WordPress Theme' started by birdgroup, Apr 24, 2014.

  1. birdgroup

    birdgroup Member

    Joined:
    May 16, 2013
    Messages:
    32
    Likes Received:
    1
    On the Bizway theme, is it possible to add a phone number/contacts stuff to the top right in the white space?
     
  2. Piyush

    Piyush Support Staff

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

    Go to the header.php file present in your theme directory and paste the code given below as instructed in the image given below.

    Code:
    <div class="header">
             <div class="grid_12 alpha"> 
                <!--Start Logo-->
             <div class="logo"> <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('inkthemes_logo') != '') { ?><?php echo inkthemes_get_option('inkthemes_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a></div>
              <!--End Logo-->
             </div> 
                <div class="grid_12 omega">
                 <div class="contact_info" style="text-align:right;">Enter your contact number and address here</div>   
                </div>
             </div> 
    [​IMG]

    This will solve your issue.
     

Share This Page