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
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; } Thanks & Regards Nitesh Raghuwanshi