Quick HTML/CSS Help please.

Soldato
Joined
14 Nov 2002
Posts
5,715
http://www.r32oc.com

at the top you will notice an advertising banner and then the site logo directly next to it.

I want the logo back to the left, and the banner where it is but im having issues setting them apart.

Can anyone view the source and help me please? doing my head in now!
 
Try
Code:
#banner {
text-align:left;
}

If you want the ad on the right I believe you will need to float it right?

Code:
iframe#ad{
float:right;
}
 
Last edited:
the banner position is right where it is, thats exactly where i want it, but i want the left edge of the logo to be aligned with the left edge of the site itself, which is where it used to be.

i have the banner in its own div with this css designated to it but for some reason the logo is following the same rules, possibly because the div is wrapped around the whole lot?
 
Code:
div#banner {
  text-align: left;
}
div#banner iframe {
  float: right;
  margin-top: -75px;
}
 
Last edited:
Back
Top Bottom