As a total newbie, I've exported my CSS from photoshop which created a bunch of absolute divs for each graphic slice. I can live with this for now (still testing) but I can't figure out how to get the content centered. It centers great in IE but not FF. I've tried several fixes from sites but can't figure out where the fix is.
Appreciate ANY help!
Lisa
CSS:
body {
text-align: center; /* Hack to center the wrapper in IE5.x pc */
min-width: 778px; /* Prevents the body becoming narrower than our wrapper div */
background: url(images/background.gif) repeat;
margin: 0;
padding: 0;
border: 0;
}
The main problem is the use of absolute positioning and trying to center it all. Your code is also, apparently, using Xhtml end tags but using html and in quirks mode. I know you may not know what all that means but you are showing us why you should never use Photoshop to create web pages. It's a mess.
Bookmarks