Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS div issue

Status
Not open for further replies.

LittleNFiesty

Technical User
Sep 26, 2006
46
0
0
US
I have a 2 column layout with div tags with a footer, but the footer only will stay below the right column if the right column is longer. If the left column is longer than it over laps the footer.

I've attached a link...Any ideas?

 
you have the left column floated, which means it hangs outside the influence of the page. easiest way to fix this is to add the following to your footer div CSS:

Code:
...
clear: both;
...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top