1. I would like the menu bar to be a red gradient, light to dark, with the text becoming White 2. I would like the footer background (just the 4 column area) to also be red with white text Do you have css code for this? Thank you in advance, you guys rock!
Hi bgdrew03! Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. 1> Code: ul.ddsmoothmenu li { background: linear-gradient(to bottom right, rgb(243, 137, 137) , rgb(241, 13, 13)) !important; } ul.ddsmoothmenu li a { color: white !important; } 2> Code: .footer-wrapper .footer-top { background: linear-gradient(to bottom right, rgb(243, 137, 137) , rgb(241, 13, 13)) !important; } .footer_widget p { color: white !important; } .footer_widget { color: white !important; } Thanks, Praveen
You are awesome. Is there a way to extend the menu bar gradient across the content area page? Thank you!
1 more thing, I need these circled parts of the footer to have white text also (image attached), thank you
Hi bgdrew03! Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. 1> Code: #menu .ddsmoothmenu { background: linear-gradient(to bottom right, rgb(243, 137, 137) , rgb(241, 13, 13)) !important; } 2> Code: .footer-wrapper .footer h4 { color: white !important; } .footer-wrapper .footer a { color: white; } Thanks, Praveen