Banner Ad, Contact Info & Background

Discussion in 'BizWay WordPress Theme' started by arcadance, Sep 7, 2013.

  1. arcadance

    arcadance New Member

    Joined:
    Mar 22, 2013
    Messages:
    2
    Likes Received:
    0
    Hi,

    I have 3 concerns that need your assistance on how we can do these:

    1.) How can I change all the background into black and the letterings into white? Reverse of what we have now.
    2.) I wanted to place a changing or sliding banner ad unto the header align with the logo, just in the middle?
    3.) Lastly, at the right side of the header, can I put our contact details to easily locate by the people.

    Hope to hear from you soon.

    Thanks,
    Arca Dance :)
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .slider-wrapper-container {
    background-color: #000;
    }
    .header-container {
    background-color: #000;
    }
    .main-content-container{
    background:#000;
    margin-top:0;
    padding-top:62px;
    }
    .page-content-container{
    background:#000;
    }
    .page-heading-container{
    background:#000;
    }
    .footer-wrapper{
    background:#000;
    }
     
    h1, h2, h3, h4, h5, h6, p, a, span{
    color:#fff!important;
    }
    2.For your second and third issue

    Go to header.php present in your theme directory and replace current code

    Code:
    <div class="header">
            <!--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>
    with code given below

    Code:
          <div class="header">
            <!--Start Logo-->
            <div class="grid_sub_8 sub_alpha">
            <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>
    </div>
            <!--End Logo-->
            <div class="grid_sub_8 sub_middle">
    <div class="ads">
            Enter your google adsense code here
            </div>
            </div>
            <div class="grid_sub_8 sub_omega">
            <div class="right_contact">
            <p>123456789</p>
            </div>
            </div>
             
          </div>
    Sending image for reference

    2013-09-07_1741.png

    This will solve your issue.
     

Share This Page