posfan12
posfan12

Reputation: 2651

CSS min-height not working

I have two pages on my website. On this page min-height is working:

http://isometricland.net/home.php

On this page it is not:

http://isometricland.net/blog/?cat=4

It's a mystery to me why this is the case since structurally they should be nearly identical. Can I get some help determining why? Thanks.

Upvotes: 0

Views: 49

Answers (1)

Conrad Lotz
Conrad Lotz

Reputation: 8818

On the link http://isometricland.net/blog/?cat=4 at the following section:

<!-- START MIDDLE PANE -->

Change the style position to absolute instead of relative:

<div style="position: absolute;..."

Upvotes: 2

Related Questions