On the Bizway theme, is it possible to add a phone number/contacts stuff to the top right in the white space?
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> This will solve your issue.