Hi,
I'm currently creating my html/css template for my site.
I have the site split into 2 sections (Header, Content)
My Content area is also split into 3 sections. This is because I have sliced the image that will be the background of my content. The first section shows the top of the rounded box for the content. The Second shows the whitespace (Area that will show content). The third shows the bottom of the rounded box.

I need the middle content area to have a default height of about 500px. However, if the content requires over than 500px, it will automatically stretch to fit that page's needs.

Below is a picture of my content area. It currently is not stretching to fit all the text.

http://img530.imageshack.us/img530/1903/templatecontent.jpg

Here is my HTML. And below that is my stylesheet.

<html>
<head>
<title>Template</title>
<link rel="stylesheet" type="text/css" href="styles/style.css" />
</head>
<body bgcolor="#343331">

<!-- Header -->
<div id="header">
	<div id="headerleft">&nbsp;</div>
	<div id="headermiddle"><p><a href="index.php"><img src="img/logo.png"></a>&nbsp;</p></div>
	<div id="headerright">
	</div>
	
</div>

<!-- Content Top -->
<div id="contenttop">

</div>

<!-- Content Middle -->
<div id="contentmiddle">
	<div id="content">
Hello<br />
	</div>
</div>

<!-- Content Bottom -->
<div id="contentbottom">

</div>

</body>
</html>
#header{
	width: 912px;
	height: 78px;
	background:url(../img/bggreen_header.png) no-repeat;
	margin-left: auto;
	margin-right: auto;
}
#headerleft{
	width: 249px;
	height: 78px;
	text-align: center;
	float: left;
}
#headermiddle{
	width: 414px;
	height: 78px;
	text-align: center;
	float: left;
}
#headerright{
	width: 249px;
	height: 78px;
	text-align: center;
	float: left;
}

body{
	margin-top: 25px;
}
#contenttop{
	width: 912px;
	height: 50px;
	background:url(../img/content_top_1.png) no-repeat;
	margin-left: auto;
	margin-right: auto;
}
#contentmiddle{
	width: 912px;
	height: 500px;
	background:url(../img/content_middle.png);
	margin-left: auto;
	margin-right: auto;
	z-index: 10;
}
#contentbottom{
	width: 912px;
	height: 30px;
	background:url(../img/content_bottom.png) no-repeat;
	margin-left: auto;
	margin-right: auto;
}
#content{
	width: 850px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 20;
}
img{
	border: none;
}

Thanks.

Recommended Answers

All 2 Replies

use percentages instead of absolutes like px whenever possible.
width is usually more of a problem than height, anyway.
Is there some reason that you need to set a min height for content?

the top and bottom images need to be the actual image you need, to fit in the curves etc, the center image need only be a slice 1 pixel thick through the middle of the image, repeat-y
apologise for inline styles they belong in the stylesheet, included here for expalanation

<body><div class='header' style='whatever'>whatever,</div>
<div class='contenttop' style='height:backgroundtopheight; background:url(backgroundtop.jpg) norepeat; width:100%;'>whatever</div>
<div class='content' style='background:url(backgroundslice.jpg) repeat-y; width:100%;'>whatever</div>
<div class='contentbtm' style='height:backgroundbtmheight; background:url(backgroundbtm.jpg) norepeat; width:100%;'>whatever</div>

its late and this may not be the most logical way to present this info

commented: n/a +1
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.