tags:

views:

52

answers:

1

I have just created my first website and am having a problem since adding an iframe to the front page. My home page used to be centered but now it aligns on the left in IE. It displays fine in Firefox, Safari, Opera etc

http://www.bignoisechorus.co.uk/home

Any ideas?

A: 

your link doesn't work. At a guess I'd say it was because by default IE left-aligns inline elements (and iframe is inline) whereas the others center-align by default. You'll want some css in the parent element like this:

text-align: center;

I think anyway...

Richard