Hey guys, I have absolutely no idea what im doing when it comes to this html stuff. I've been reading and reading and I think im understanding little by little. Well ive been trying to get a simple banner on my zero forum page with no luck so far. I made a picture in photo shop but its not a permanent one.
I just need some kind of code to post it in my head and make it stretch depending on different resolutions. If someone could point me in the right direction or help me out it would be very greatly appreciated. Thank you very much.
Offline
Hello Nightmare. There are two simple ways you can approach this - both involving keeping your banner as it is:
1) Repeat another image (e.g. bg.png) be the background images for the table cell your header is in. This background image would have the same background color in your header.
<td width="274" rowspan="3" valign="top" background="bg.png"> <a href="http://yoursite.com/"><img src="http://yoursite.com/imgges/image.png" alt="" width="274" height="112" border="0"></a> </td>
2) Do the same thing but with CSS:
<td width="274" rowspan="3" valign="top" style="background:#660000;"> <a href="http://yoursite.com"> <img src="http://yoursite.com/imgges/image.png" alt="" width="274" height="112" border="0"></a> </td>
Offline