I’m struggling to get my head around this. I would like to have a <div id=“wrapper”></div> that sits nicely in the middle of the page…easy right…right. However, I would also like to place a banner to the right hand side just like this site: New Media, Marketing, Advertising & Interactive News & Jobs | NMA.
there are quite a few ways actually. which one you chose would probably depend on the semantics of the banner. for the sake of argument, lets say it’s advertorial content.
i would give your #wrap position:relative; and then the banner position:absolute and left: 100% ( if you ant some more space use margin-left: x-amount or since #wrap is probably a specific amount you can use left: (#wrap width amount)+ (your desired amount);
after that done use top: ( whatever amount) to adjust it’s vertical position.