Please see attached image.
Printable View
Please see attached image.
Kind of sloppy but that should get you started. Peace.Code:<html>
<head>
<title>blah</title>
</head>
<body>
<table width="100%" border="1">
<tr>
<td align="center" colspan="2" width="100%">
<img src="images/banner.jpg" alt="banner">
</td>
</tr>
<tr>
<td align="center" width="15%" height="600px">
blah
</td>
<td align="center" width="85%" height="600px">
blah
</td>
</tr>
</table>
</body>
</html>
Maybe I should have been more specific. Thanks for you help, but i'm not that retarded. I know that much.
If you would so kindly direct your attention to the top right part of the image. How do I make the image "go over top of" the content bar? Would layers work with all browsers?
I think I see now, I'm sorry. Work on your drawing skills :P. j/k.
more like that? And to move it around change the amount of pixels from the top and left within the style thing.Code:<html>
<head>
<title>blah</title>
<style type="text/css">
img.main {
position: absolute;
top: 300px;
left: 520px;
}
</style>
</head>
<body>
<table width="100%" border="1">
<tr>
<td align="center" colspan="2" width="100%">
<img src="images/banner.jpg" alt="banner">
</td>
</tr>
<tr>
<td align="center" width="15%" height="600px">
blah
</td>
<td align="center" width="85%" height="600px">
<img src="images.jpg" class="main">
</td>
</tr>
</table>
</body>
</html>
By layers do you mean frames?
http://www.w3.org/TR/REC-html40/present/frames.html
heretic! Thanks! one more question.
http://tppblog.com/personal/
See the part that shows the 'news'? I want to have an image in the BOTTOM RIGHT HAND CORNER of that content table. how do I do this? (I don't want the position to be absolute, it needs to move with the table)
Actually - changed my mind. And figured out how to do what I wanted to do. (Notice the cute wittle tuxxy wuxxy in the title bar ) ;-P