I am trying to change the footer colors at http://maintenancemattersdps.com and based on other threads I added the following CSS: .footer { background: #496336; } .footer-wrapper { background-color: #496336; } How can I change the colors on the right and the color on the bottom where the © is shown?
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer_bottom { background: red!important; min-height: 25px; } .footer_wrapper { background: red; } .bottom_cornor { display: none; } Inplace of "red" put your color code. Thanks & Regards Gourav Shrivastava
Thanks. This changed the colors, but it took away the rounded corners on the bottom. Can I change something to get the rounded corners at the bottom?
Hello, Go to the Appearance -> Theme Options -> Styling Options -> Custom CSS section in your dashboard and paste the code given below Code: .bottom_cornor { background: red; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } in place of Code: .bottom_cornor { display: none; } This will solve your issue.