|
jurgen -> RE: Dynamic Web Template length (4/16/2007 17:31:00)
|
You have styled your id's in your header, and than you do it agin within your html code. The html code has div height, and you can't expect the div's to extend to what ever is needed with your content in side. Remove the "height". <div style="width: 548px; height: 213px;" id="mainbody">
<div id="maintext" style="width: 551px; height: 210px;" class="style4">
<div id="bluebox" style="height: 185px" class="style5"> The better way is to asign the css code in your header or even with an external style sheet. In your html code you only need to asign the div ID's like that: <div id=mainbox> <div id=maintext> <div id=bluebox>
|
|
|
|