> div#boundingbox {
> position:relative; /* or absolute */
> top:0;
> left:50%;
> margin-left:-380px; /* centers a 760px _container_ */
> }
Oops... for width:
div#boundingbox {
position:relative; /* or absolute */
top:0;
left:50%;
width:760px;
margin-left:-380px; /* centers a 760px _container_ */
}