Need help on CSS (HTML)?

Ark

New member
I made a part of my code to cause a wrap so that all my stuff is aligned in the center. The thing is, when i built my template, i forgot to leave room for adds, i don't really want to have to go back and redo that part. So i figured there should be a way to place an ad on the outside of my wrapped content where i want it..

Basically it would look SIMILAR to this

<style type="text/css">
.wrapper {
margin:0 auto; width:800px; text-align:left;
}
</style>
</head>
<body>
<div class="wrapper">
CONTENT OF SITE
</div>
(ad code here )

the thing is i want the add to the side of the site... doing it like that puts the add on the bottom,
i want to put the add to the side of the wrap i made similar to a float i guess..
do you mean move the code for the Ad before the Wrap?
 
Back
Top