Couple Questions

Discussion in 'Infoway WordPress Theme' started by kinetic87, Mar 4, 2013.

  1. kinetic87

    kinetic87 New Member

    Joined:
    Jan 2, 2013
    Messages:
    22
    Likes Received:
    0
    Hi there have a couple questions about Infoway Theme

    1) How would I change the color of the header and the send you message button of the lead capture form

    2) If i just wanted a colored bar at the top of website without any information in it how would I do that.

    Screen Capture: http://i.imgur.com/kQEDfxP.png

    Thank you!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    1. For the first issue, Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    #topinfobox {
    background: blue;
    }
    
    this will change the color of the top header.

    In send you message button, the color is shown with the help of submit-button.png image in the backgound.
    So, Create the background image of your color, which is having the same dimension and same name as the submit-button.png image.
    Replace previous submit-button.png image with your created submit-button.png image from the images folder present in the Theme Directory

    This will help you to change the color of send you message button.

    2. For the second issue, Paste this code in Custom CSS
    Code:
    .social_logos {
    display: none;
    }
    .topinfobar span.info p {
    display: none;
    }
    .siteinfourl {
    display: none;
    }
    .closeicon {
    display: none;
    }
    .topinfobar .toptip {
    display: none;
    }
    this will solve your issue.
     

Share This Page