Reputation: 550
My menu's at the right column are bigger than my newsarticles. This is causing that the menu is overlapping my footer.
How do I get my footer pushed down in the same proportion as my right column?
Any help would be appreciated
website: http://www.e107webdesign.nl
Upvotes: 0
Views: 294
Reputation: 550
Thanks playcat,
I found out. They where in the same DIV, only the sidebar was set to position absolute and a left margin of 593. Now I have changed it to position: relative with a margin-left 0
This solved the problem.
Upvotes: 0
Reputation: 2555
your left and right column should be in the same DIV, and footer should go under that div
<div id="main">
<div id="left">...</div>
<div id="right">...</div>
</div>
<div id="footer">...</div>
Upvotes: 1