• I would like the post area of my pages to be at least 1024px in height whether I have content to fill it up or not. Rather than extending it with tons of <p> </p> line breaks I would like to modify the style sheet code if possible.

    Any and all help is appreciated. thx

Viewing 1 replies (of 1 total)
  • you can apply a min-height property and value to the .post style (which will work in modern standards browsers) and set up an IE conditional comment that adds a height:value for browsers lte IE6, as in:

    <!--[if lte IE 6]>
    put a set of style tags and rules here or link to a different style sheet just to be used if the users browser is IE6 or older
    <![endif]-->

    Modern browsers respect min-height and IE browsers 6 or older will ignore it and use the height value. If the content is greater than the height, it will just go ahead and expand vertically anyway.

    HTH

Viewing 1 replies (of 1 total)

The topic ‘Extend Post Area Height’ is closed to new replies.