I read the thread on changing the Style and colour of home page headings. This was very helpful. Is there a way to change the colours to "dark blue" rather than just blue? The script recognized "blue" but not "dark blue." Also, how can I make the font of these headings larger? and/or bold? Thank you kindly for your time.
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .home_container .page_info h1 { color: darkblue; font-size: 30px; font-weight: bold; } .home_container .page_info p{ color: darkblue; font-size: 25px; } In place of "darkblue" you can put your color or color code. You can also change the value of "font-size" as per your requirement. This will solve your issue.