Thread: center dj
View Single Post
  #2 (permalink)  
Old 09-03-2009, 09:21 PM
bmcoll3278's Avatar
bmcoll3278 bmcoll3278 is offline
Senior Member
 
Join Date: Jun 2009
Posts: 303
bmcoll3278 is on a distinguished road
Default

ok a few things

first move your style sheet up it needs to be between <head> and </head>

Hear is your sheet now
Code:
<style type="text/css"> 
.img1 { text-align: center }
 
.adspace_right {
	float: right;
	margin: 180px 160px 10px 10px;
}
 
.adspace_left {
	float: left;
	margin: 180px 10px 10px 160px;
}
 
</style>

Make it this

Code:
<style type="text/css"> 
.img1 { text-align: center }
 
.adspace_right {
	float: right;
	margin: 180px 160px 10px 10px;
}
 
.adspace_left {
	float: left;
	margin: 180px 10px 10px 160px;
}
 div.centered {
 text-align: center;
 border-width: 0px;
}
 
</style>

now right after the body tag<body>

change it to

Code:
<body><div class="centered">

and at the bottom of the page

Code:
</div></body>
every thing inside that div will be centered.
__________________
I hope to build a site with something for every body
www.bmcoll.com
Reply With Quote