Hi, I need some help to make some changes. My site is: http://www.sheffieldcarpetcleaner.co.uk/ I would like to change the colour of the menu bars They are blue and light blue at present. I would like to put in my own colour code. I would like to Change the colour of the telephone details (top right). I would also like to be able to put some text underneath the logo (Merlin Clean). Is it possible? Many thanks Paul.
Hello, 1. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .menu_container { background: red; } In place of "red" you can put your color or color code. This will change the color of menu bar. 2. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .call-us p { color: red; } In place of "red" you can put your color or color code. This will change the color of contact section text. 3. Go to the header.php file present in your theme directory and paste the code given below in that file as shown in the image given below. Code: <p class="logo_text">Enter your text here</p> This will solve your issue.
Hello Paul, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .header_container .header .alpha p { color: red; } In place of "red" you can put your color or color code. This will solve your issue.