Forum Moderators: open
Centering an iFrame can be done in the same way as centering a div. Treat it as a block level element and away you go!
So, for example:
iframe.myCenteredIframe {
width: 50%;
margin-left: 25%;
}
There are other methods which you can read about by doing a search.
HTH