Forum Moderators: not2easy
You have all your images positioned absolutely, you can't move them! Man, you really went and messed everything up, sheesh! <I'm just pulling yer leg a little, sorry ;)>
Nah, not really a problem...
div.main {
position: relative;
text-align: left;
margin: 0% 8%;
}
Now you have a relative div you can move all around -- or center -- and all your pictures are still absolutely positioned in relationship to this div. :)
HTH
Jordan
Ps. Posting urls is against the TOS, and you will have your ears ripped off by angry chipmunks (well versed in the art of Fei Fung Chi Gung) if you ever do it again...just a warning...I had to learn the hard way. ;P
But the margin: 0% 8%; made a hor. scrollbar too easily if resizing the browser (or in 800x600, which I know, has a hor. scrollbar, but cutting off a few pixels from my images should fix this.)
This is what I did:
div.main {
position: relative;
text-align: left;
width: 784px;
margin-left: auto;
margin-right: auto;
} Thank You!
Jordan
Ps. I downloaded a copy of your page while trying to help get it working, and I just now deleted all the files that were downloaded. (Just letting you know so you're not wondering when you look at your logs :) ).