I've seen a lot of really bad answers to simple questions regarding how to Change the column width for a specific page, Open a UL in a page/post and how to get rid of the scroll bar in Iframe.
I'm using WordPress 2.9.1. 80% of the plugins I've been recommended to use don't work, don't show up, they're badly documented, or just plain crap. As you've probably guessed I'm far from impressed at WordPress but I've got this far and now have to stick with it.
I'm not saying this is perfect but it works. I'm using the "mixxmag" theme and that's as awkward as hell to work with but a page is a page and a post is a post. Anyway here's what I did and feel free to play around with what's posted.
If this helps one person I've achieved something.
Post this directly into the specific page you want to change
-----------------------------------------------
<?php if(is_single()): ?>
<style type="text/css">
.widecolumn { margin:0pt auto; width:600px }
</style>
<?php endif; ?>
<head>
<title>iframe</title>
<script type="text/javascript">
function resizeframe()
{
var xpos = (document.body.clientWidth - 100) / 2;
var ypos = (document.body.clientHeight - 50) / 2;
var fm = document.getElementById("frame1");
fm.style.left = xpos;
fm.style.top = ypos;
fm.style.display = "block";
}
</script>
</head>
<body onload="resizeframe()">
<iframe id="Iframe1" src="http://maps.google.com" runat="server" width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" >
</iframe>