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!
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.