changing background colors in footer & copyright areas
-
I am trying to change the background colors in the footer and copyright areas, with mixed success.
I have been able to change the footer color, but find it is necessary to add a border to the right and left margin. The right side works. The left side only adds to the right, leaving the left untouched. On this site I have left it with both the right and left borders set to show the odd behavior. I tried margin and padding first, but neither helped.
The code I have used thus far is:
.container .row #footer-wrapper { background-color: #0c436e; border-right: 15px solid #0c436e; border-left: 15px solid #0c436e; }
The copyright area is the other issue. The best I have been able to do is to change the entire band extending beyond the bounds of the main content area on the right and left. My goal is to match the boundaries of the main content area including the sidebar.
#copyright-wrapper { background-color: #003e6e; padding: 20px 0px; }
What do I need to change?
Thank you
- The topic ‘changing background colors in footer & copyright areas’ is closed to new replies.