
Originally Posted by
slitharein
Hey everybody,
I made a picture in photoshop which will serve as a rough template for my website. I was wondering if I could make the picture scale so that it fills the entire screen no matter what resolution your screen is. I know this is possible (I've seen it on other websites), but I have no clue how to do it.
www.slitharein.co.cc is my website.
Any extra comments on improving the background or other things are also welcome (especially colour schemes). I easily change all the colours etc.
I made sure to be able to do that.
Thanks in advance
Can you provide the examples you mentioned? But you can either use CSS or JavaScript. Your website seemed to be sliced out directly off Photoshop/ImageReady, right?
Well, you might have to play with the CSS to achieve that. Try this, if this is what you want:
Open up your file, add this before or after #Table_01 (doesn't really matter):
Code:
body{ margin: 0 auto; background: #000; }
Take out"position: absolute" in #Table_01
Code:
#Table_01 {
position:absolute; (take this out)
left:0px;
top:0px;
width:1024px;
height:768px;
}
Do a quick test to see if that's what you are wanting to do.