What I am looking for is a code that will allow me to design a banner that will stretch '98%' of the users resolution.
This would be where I would create a section of the banner that would be positioned in the top left corner and then a repeating image after it.
<div style="position: absolute; top: 0; left: 0;width: 98%;height: 100px"><span style="width: 50px;background: url(BG IMG)"></span><span style="width: 100%;background: url(BG IMG)"></span></div>
Height of banner
Width of left part of banner
Image URL to left part of banner
URL to rest of banner
Didnt work
Didnt work
Can I see the modified code you're using, please?
Code:
- <div style="position: absolute; top: 0; left: 0;width: 100%;height: 90px"><span style="width: 376px;background: url(http://i29.tinypic.com/29f4dhs.jpg)"></span><span style="width: 100%;background: url(http://i30.tinypic.com/rhoivr.jpg)"></span></div>
a Forum link would help too!![]()
http://evoarts.virtualforums.co.uk/
Use this, instead:
Code:
- <table style="position: absolute; top: 0; left: 0;width: 100%;height: 90px" cellspacing="0" cellpadding="0">
- <tr>
- <td width="376">
- <div style="background: url(http://i29.tinypic.com/29f4dhs.jpg); width: 376px; height: 90px">
- </div>
- </td>
- <td width="100%">
- <div style="background: url(http://i30.tinypic.com/rhoivr.jpg); width: 100%; height: 90px">
- </div>
- </td>
- </tr>
- </table>
![]()
Why thank you![]()
Such a stupid way to do something so easy! >.< But ok![]()
Why thank you![]()
No problem.![]()