Xhtml

Ub3|2 5oIDaT

New Member
Messages
4
Reaction score
0
Points
0
I was wondering if anyone knew how to stretch the banner image at the top of my page to all viewable size screens? link to my site http://ubersoldat.pcriot.com/. I used a table with a background image for the table and have no idea how to stretch the image, even when I stretch the table. Is there a way, or is there another way to create a banner at the top of a page?
 

Ub3|2 5oIDaT

New Member
Messages
4
Reaction score
0
Points
0
Image width=100% does not work for me. Take a look at my code to see what I did. I used a div tag to display the background image of the page. Using an external style sheet I set the background to zero Z-index. The content of the page including the table that hold my banner are all set in a separate div tag with a z-index of 1. The background image to the table is specified in the same external style sheet. How can I stretch the background image of the table to the width of the screen wether it be 600 X 480 or 1280 x 1024. http://ubersoldat.pcriot.com/global.css and http://ubersoldat.pcriot.com click view, page source.
 

RomeRome2

New Member
Messages
23
Reaction score
0
Points
0
Instead of having
Code:
width='480' length='600'
or whatever have
Code:
<table width="100%">
.
I think don't blame me if I'm wrong this is off the top of my head but do a bit of googling and you will find it! :biggrin:
 
Top