Sure. I don't really like the method you're using right now, seeing that you're using rather large images and there is a max-height. Here's something similar to what I've used before:
Code:
.container {width: 300px;}
.top {height: 10px;}
.main {}
.bottom {height: 10px;}
.right {float: right;}
.left {float: left;}
HTML Code:
<div class="container">
<div class="top"><img src="topleft.gif" class="left" /><img src="topright.gif" class="right" /></div>
<div class="main">
Main content here
</div>
<div class="bottom"><img src="bottomleft.gif" class="left" /><img src="bottomright.gif" class="right" /></div>
</div>
Of course, it's extremely simple and very easy to modify.
- Steve
__________________
if($stevej == "helpful") { $talkupation += $user_power; }
|