Forum Moderators: open

Message Too Old, No Replies

Center aligned page with frames

is it possible? :/

         

emixiak

10:44 am on Jul 1, 2007 (gmt 0)

10+ Year Member



Hi..

is there any possibility to do something like on that screen picture:

<screenshot removed>

i mean a page layout with two frames, both aligned to the center of the page?

plz help :/
thx in advance

[edited by: encyclo at 12:08 pm (utc) on July 1, 2007]
[edit reason] no screenshots please [/edit]

BlobFisk

11:50 am on Jul 2, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi emixiak and welcome to WebmasterWorld!

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