Quote:
Originally Posted by jacklynlick
Not sure how to float it to the center. I don't work much with css, but, this is css. Just learning. If it looks fine, it's got to be better than what I currently have up there! Thanks! I'm going to go for it for now!
If anyone would like to trade links on my toplist for that site, it's at http://www.foot-goddess.com/arp/index.html
Love,
Jackie
|
in css file (ie styleindex.css) add this
#wrapper {
margin: 0 auto;
width: 960px;
text-align: left;
padding: 0;
}
in header file (like header.php) add the wrapper div under body tag
<body>
<div id="wrapper">
in footer file (like footer.php) add the /div tag just before /body tag
</div>
</body>