Hey Paul,
Not really understanding this completely.
my css for the left and right is as follows:
Code:
#left {
border: solid black 1px;
margin-left: 10px;
float: left;
width: 50px;
background: #E8E8E8 url('../images/trans.gif') repeat-y left top;
}
* html #left {
margin-right:-3px;
}
#right {
margin-right: 10px;
float: right;
width: 50px;
border: solid black 1px;
background:pink url('../images/trans.gif') repeat-y right top;
}
* html #right {
margin-left:-3px;
}
It's taking in the image aok but not extending.
My html is:
Code:
<body>
<div id="top">
<div id="logo">
<h2 align="right">Telephone Number</h2>
</div>
</div>
<div id="wrapper">
<div id="left">
<p> </p>
</div>
<div id="right">
<p> </p>
</div>
<div id="nav">
<p>Nav</p>
<p>Nav</p>
<p>Nav</p>
<p>Nav</p>
<p>Nav</p>
<p>Nav</p>
</div>
<div id="center">
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
<p>center</p>
</div>
<div id="clear">
<!-- Make Clear for footer -->
</div>
<!-- Close Clear for footer -->
</div> <!-- close wrapper div -->
<div id="footer">
Footer
</div>
<br>
</body>
U mentioned:
Wrap your page in another wrapper and then repeat an appropriate image down the left side of the wrapper (y-axis). Then repeat another image down the right side of the inner container.
This is throwing me, especially the part of inner container.
Regards,
ronan
Bookmarks