Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Site works in every browser except IE 7 and before… Re: Site works in every browser except IE 7 and before…

#77353
aspiringWebbie
Participant

I may have over looked it, but you have styling for a footer div that is not in your markup.

If you are trying to extend the footer the entire width of the browser – I would recommend not adding a width to it (this will allow it to be the entire width of the browser) and place the footer div outside of the container div
Then you can add another div to wrap around the footer elements (i.e: #footerContent"), set the width (i.e : same as your container) and set to margin: {0 auto;}

If you wish for the footer to be only the width of the container – make a footer div and place it inside the container div and set the width of the footer div to your container’s width.

Hope this helps.