I have 2 questions. 1. Can i change the main banner colour where the logo goes to white but keep the remaining colour of the theme the same. 2. I cannot reduce the size of the middle band where it is white with the page title. I have noticed this is the height on other size is near the height of the text where as mine is too large see image.
Hello, 1) Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .menu-wrapper-bg { background: white; } 2) Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .breadcrum h4 { padding-top: 18px; } Thanks & Regards Nitesh Raghuwanshi
Nitesh, Thanks for excellent response as usual!. The code works a treat however it leads to another problem in the menu setup. It has white text for inactive links and green box on mouseover. Is it possible to change the white text to a blue say hex 0054A4? Not sure on the green box mouseover but i think it works. Thanks Steve
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .menu-sp ul a{ color:#0054A4; } Thanks & Regards Gourav Shrivastava
Great works a treat thanks. Is it possible to now change the highlight block colour from the theme green to no colour or just white? Cheers steve
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .menu-sp ul a:hover{ color:white; } Thanks & Regards Gourav Shrivastava
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .sf-menu li:hover, .sf-menu li.sfHover { background: white; } .sf-menu ul li { background: white; } .sf-menu ul li li { background: white; } In place of "white" you can put your color or color code. This will solve your issue.