Background...

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
I know but I can't do it extramly big. Because If I do it bigger then it would look weird for the one who have 1024x768... Isn't there anyway to "auto-resize" so it looks the same in every resoulution?
 

mshum

New Member
Messages
5
Reaction score
0
Points
0
how do u get the background up ... i got the codes but i dont know where to put them ? help!!!!
 

Mooseman

New Member
Messages
89
Reaction score
0
Points
0
You can always try a CSS trick but it only works with a 100% x 100% html/body.

CSS:
<style type="text/css">
html, body {margin:0; padding:0; width:100%; height:100%; overflow:hidden;}
#background{position:absolute; z-index:1; width:100%; height:100%;}
}
</style>

HTML
<body>
<div>
<img id="background" src="YOUR REAL IMAGE URL" alt="xxx" title="xxx" />
</div>
......and the rest of the HTML after this
 
Top