Click to See Complete Forum and Search --> : Need help putting this all together


Pseudo
07-07-2005, 03:35 AM
http://www.geocities.com/sligeranderson@sbcglobal.net/template.html

I am trying to set up a site for something and I cant get some things right
I wanted those two top images to be aligned up top so there isnt any white above them (And is there a way it can adjust itself depending on the resolution?)
and I want the text to be put in the box I made I have seen sites that have boxes like that set as the background but I think that would have to deal with frames... anyone care to help?
I made all the images (Cept the gizmondo) myself so I can edit them if needed

graatz
07-07-2005, 10:39 AM
<body style="margin:0px"> will get rid of the white space. The extra white space you still see at the top seems to be in the image file itself...

As far as positioning text in your box, you can encase it in a <div> and use CSS to fix its position within the box. You'd need to know exactly how many pixels left and down place it, as well as how wide and tall it needs to be (in pixels), then you'd have something like:

<div style="position:absolute; left:xpx; top:ypx; height:xpx; width:ypx; overflow: scroll">

Pseudo
07-07-2005, 04:36 PM
So I have to learn CSS too?

Pseudo
07-07-2005, 05:32 PM
Ok I got that down
now what if I want to put seperate text into a box next to or below it?
same code?

graatz
07-08-2005, 07:09 AM
same code, different x & y values :)