OK, I've got something. I assume you can alter the css and I know you can alter the script we worked on before. Here's what to add to the css (I'm including the current .body class as a reference, addition highlighted red, use exactly as written):
Code:
.body{
margin-top:0px;
margin-right:0px;
margin-bottom:0px;
margin-left:0px;
width:750px;
}
* html .body {
text-align:center;
}
Then in 'our' script, add to the onload function, so it looks like this (addition highlighted red, use exactly as written):
Code:
function onloadfunction(){
if (document.all&&document.getElementById&&!window.opera)
document.getElementsByTagName('table')[0].width='750'
if (persistmenu=="yes" && location.href!=='http://www.cafepress.com/schnickschnack'){
var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname
var cookievalue=get_cookie(cookiename)
if (cookievalue!="")
document.getElementById(cookievalue).style.display="block"
}
}
What this will do is center the page in IE. All of your content will still be 750px wide. The table at the top will also become 750px wide and centered, the stuff at the bottom, over which I see no way to gain control will be centered too and is already less than 750px wide so, it will all look good. Other browsers will ignore all of this.
Bookmarks