I would like to change the title bar color on my site. Test link here http://webworldadvantage.com/positivezone/the-champions-challenge/ Where there is the green background around "Our Program", I would like to change it to another color. I have tried pasting the following into my custom css and it is not working. .main-content .gallery h1, .main-content .page-content h1.contact, h1.single-heading, .page-content h1.page_title { color: red; background: yellow; } Please help
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .page_title { background: yellow ! important; color: red ! important; } In place of "yellow" and "red" you can paste your color or color code. This will solve your issue.