Jump to content

CSS2 for iframe?


ben3001

Recommended Posts

Your html code has you nesting the "info" iframe inside the "content" iframe and not even closing one of them - probably just a mistake... That is your problem... IE forgives you ... FF doesn't...Just fix it so that you have to separate iframe elementsYour original code (formatted for easy viewing):

<center>    <iframe src="../months/blank.htm" name="calendar" frameborder="0"  scrolling="auto" width="200" height="230"></center>             <iframe src="../months/blank.htm" name="info" frameborder="0"  scrolling="auto" width="200" height="230">    </iframe>

How it should be:

<center>    <iframe src="../months/blank.htm" name="calendar" frameborder="0"  scrolling="auto" width="200" height="230">    </iframe></center>         <iframe src="../months/blank.htm" name="info" frameborder="0"  scrolling="auto" width="200" height="230">    </iframe>

Link to comment
Share on other sites

thanks for your help mate. the simplest things are not always obvious :)

Your html code has you nesting the "info" iframe inside the "content" iframe and not even closing one of them - probably just a mistake... That is your problem... IE forgives you ... FF doesn't...Just fix it so that you have to separate iframe elementsYour original code (formatted for easy viewing):
<center>    <iframe src="../months/blank.htm" name="calendar" frameborder="0"  scrolling="auto" width="200" height="230"></center>             <iframe src="../months/blank.htm" name="info" frameborder="0"  scrolling="auto" width="200" height="230">    </iframe>

How it should be:

<center>    <iframe src="../months/blank.htm" name="calendar" frameborder="0"  scrolling="auto" width="200" height="230">    </iframe></center>         <iframe src="../months/blank.htm" name="info" frameborder="0"  scrolling="auto" width="200" height="230">    </iframe>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...