Hello there, there were a few questions coming up today for the homepage and I would appreciate your help: 1. How can I position my logo on the left side? 2. How can I change the background colour of the feature section into white? 3. How can I change the background frame of the feature section from riffle to plain? 4. How can I change the colour of the frame as well as the header of each feature box into a light blue? 5. How can I change the footer background colour into white? thank you very much in advance Cheers
Hello, 1. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .logo a img.aligncenter { float: left; } 2. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature_content { background: white; } In place "white" you can put your color or color code. 3. Could you please explain your third issue little more. 4. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature_content .feature .feature_title { background: blue; } .feature_content .feature { border: 10px solid red; } In place "red" and "blue" you can put your color or color code. 5. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer_wrapper { background: white; } In place "white" you can put your color or color code. This will solve your issue.