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
every thing inside that div will be centered.