-1

I'm building my website on Wordpress but stuck on one thing.

I want my sidebars, the left and right sidebar vertical in the same height as the content even the content inside the sidebar is shorter than the content in the midsection.

I also want the content in the midsection vertical in the same height as the content inside the sidebar if there is more content in the sidebar.

See website

See what I mean here

Robin
  • 47
  • 1
  • 7
  • Firstly, it's not easy. Unfortunately CSS2 doesn't support any method to do this. Try this: http://stackoverflow.com/questions/1056212/how-do-i-achieve-equal-height-divs-positioned-side-by-side-with-html-css – Mikel Bitson Oct 29 '15 at 18:36
  • This works to for me! Thanks – Robin Oct 30 '15 at 11:53

1 Answers1

0

Add overflow: hidden; to the .containerdubbel div.

.containerdubbel {
  position: relative;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  background: url(../Meerwoonruimte/images/achtergrond.png) repeat-y top left;
  width: 990px;
  min-height: 600px;
  height: auto !important;
  overflow: hidden;
}
Felix A J
  • 6,300
  • 2
  • 27
  • 46