David McCraw wrote:I'd like it to look like this
Ah, I totally misunderstood. You should still be able to do this with absolute positioning. I'll use my example, as I have a convenient local copy to play with, but the same could be done for the original.
The right hand banner is placed in position using a positive and negative margin (banner is 163px wide):
- Code: Select all
div.noCrimeRight
{
position:absolute;
left:100%;
top:0px;
margin:0 0 0 -163px;
}
As you have an 800px wide site container (I think), then you want to place it absolutely in the centre, and offset it a little to the right. Chnage the left to 50%, and the margin goes from -ve to +ve; 800/2-163=237px..
- Code: Select all
div.noCrimeRight
{
position:absolute;
left:50%;
top:0px;
margin:0 0 0 237px;
}
Looks like it's working in IE7+FF. I'm not sure if it will break if your browser window is smaller than 800px width, not sure, worth double checking.
You'll have another problem, though: if you do it like this, you're 'links' menu button won't work :-P. Maybe make the banner smaller?