adam84 Posted June 21, 2010 Share Posted June 21, 2010 Hello, when I view my page in IE, I get all my content (all 3 iframes), but when I run it in firefox, i only get the first iframe to show up. The firefox source code is shown below, it doesn't even show up the border for the last two frames. Any ideas? <iframe width="100%" height="350" src="page1.php" frameborder="0" scrolling="no"><br> <iframe width="100%" height="350" src="page2.php" frameborder="1" scrolling="no"><br> <iframe width="100%" height="350" src="page3.php" frameborder="1" scrolling="no"> Quote Link to comment Share on other sites More sharing options...
joePHP Posted June 21, 2010 Share Posted June 21, 2010 Hi, You need to close the iframes: <iframe width="100%" height="350" src="" frameborder="1" scrolling="no"></iframe> <iframe width="100%" height="350" src="" frameborder="1" scrolling="no"></iframe> <iframe width="100%" height="350" src="" frameborder="1" scrolling="no"></iframe> Joe Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.