Change background colour of widget footer area on Nishita theme
-
Hello,
I’m new to css so sorry if this is a straightforward question. I want to change the background colour of the footer section of my site which has widgets in so this area becomes more separate to the rest of the page. Is this possible? Any help would be really appreciated!
The site is: http://www.kingstonbridge.com
Thanks
The blog I need help with is: (visible only to logged in users)
-
The CSS for changing the footer background color would be:
#sidebar-footer-wrapper { background-color: #aaaaaa // Enter your color here }To get the code for the color you want, you can use this color picker: http://www.w3schools.com/tags/ref_colorpicker.asp
-
Sorry, missing a ‘;’ on the code example above. Use the example below instead:
#sidebar-footer-wrapper { background-color: #aaaaaa; // Enter your color here } -
-
-
- The topic ‘Change background colour of widget footer area on Nishita theme’ is closed to new replies.