give_up Posted February 20, 2009 Share Posted February 20, 2009 WHEN VIEWING IN IE THIS FRAME SETS JUST COMES UP WITH A BLANK SCREEN HERE IS THE CODE <html> <head> <link href="includes/in2.css" rel="stylesheet" type="text/css" /> <title>title</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <frameset rows="30,*" cols="*" framespacing="0" frameborder="no" border="0" scrolling="no" > <frame name="topframe" src="mini.php" marginwidth="2" marginheight="2" scrolling="no" frameborder="0"> <frameset rows="*" cols="160,*" framespacing="0" frameborder="NO" border="0"> <frame src="menu.php" name="leftFrame" noresize> <frameset rows="*" cols="1500,*" framespacing="0" frameborder="NO" border="0"> <frame src="main.php" name="main" noresize> <frame src="UntitledFrame-3"></frameset><noframes></noframes> Link to comment https://forums.phpfreaks.com/topic/146095-blank-frameset-in-ie/ Share on other sites More sharing options...
farkewie Posted February 20, 2009 Share Posted February 20, 2009 Firstly this is not a php question. But i think i can answer.... Don't use frames. :-) they suck. i would be using a CSS layout there are very few times where a frame is a good idea. Link to comment https://forums.phpfreaks.com/topic/146095-blank-frameset-in-ie/#findComment-766964 Share on other sites More sharing options...
Sangha-08 Posted February 20, 2009 Share Posted February 20, 2009 Firstly this is not a php question. But i think i can answer.... Don't use frames. :-) they suck. i would be using a CSS layout there are very few times where a frame is a good idea. Exactly, and they're bad for SEO, and usually make the site look very unprofessional. Just use css divs, if you're having trouble placing files in the template, and use <?php include('whatever.php'); ?> rather than html iframes. Link to comment https://forums.phpfreaks.com/topic/146095-blank-frameset-in-ie/#findComment-766978 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.