Header - tomasd

Discussion in 'ColorWay WordPress Theme' started by tomasd, Jun 11, 2014.

  1. tomasd

    tomasd New Member

    Joined:
    Jan 26, 2012
    Messages:
    4
    Likes Received:
    0
    I want to add and "Support Icon" with a link to the page at the right of my header. Could you help me please.
    www.codo.cl
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For this you need to remove call us feature from the header.php
    Open header.php file and replace code as shown in the image.

    Code:
    <div class="grid_24 header">
    <div class="grid_16 alpha">
         <div class="logo"> <a href="<?php bloginfo( 'url' ); ?>"><img src="<?php if ( get_option('colorway_logo') !='' ) {?><?php echo get_option('colorway_logo'); ?><?php } else {?><?php bloginfo('template_url'); ?>/images/logo.png<?php }?>" alt="<?php bloginfo('name'); ?>" /></a> </div></div>
    <div class="grid_8 omega"> <div class="support">Support</div></div>
    <div class="clear"></div>
    
    After replacing code Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .support{
    text-align:center;
    margin-top:50px;
    margin-right:30px;
    background:red;
    border-radius:5px;
    width:150px;
    float:right;
    }
    header-code11.png

    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page