Jump to content

Footer Background Color


Recommended Posts

Hi,

i try to change the footer background color at global.CSS as below

/* Footer */
#footer {
   border-top: 1px solid #d0d3d8;
   width: 970px;                                <---- add this
   background-color: green;                <----- add this
   padding: 0.5em 0;
   clear: both
}



but it seem not all the footer color is changed and is just change the top part only.

anyone know where is the problem ?

Thanks

32427_BmdXC0SxzXgJBmWTVCWS_t

Link to comment
Share on other sites

Most likely, the footer entries are floated and the height of the containing element isn't big enough to include the floated elements. You should increase the height of the containing element, probably #footer, but check using Firebug.

Link to comment
Share on other sites

  • 5 months later...
how does one change the color to the font in the footer?


Go to theme>css>global.css and look for footer - in standard install about line 811

In the main div ID add the color for the font that you want e.g.:
#footer {
   border-top: 1px solid #d0d3d8;
       color: blue;
   padding: 0.5em 0;
   clear: both

Link to comment
Share on other sites

×
×
  • Create New...