views:

38

answers:

2

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

+1  A: 

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>
playcat
A: 

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.

Justmac
Oh, my bad :). Well, I hope it helped a little bit, even if to point you to a place where u saw I was wrong, and fixed things :)
playcat
Thats exactly right! Sometimes people point you a little to the right direction! Thanks!
Justmac