imperialized Posted February 16, 2009 Share Posted February 16, 2009 I know this has nothing to do with PHP and I apologize, but I know that people here will probably know because it is simple HTML. Of Course, if this gets deleted I understand. As I don't usually work with frames I am stuck trying to get the frames to work as I'd like. If you could help i'd appreciate it. Please don't delete this mods!! Basically I want the frame layout to look like this __________________________________ Frame 1 __________________________________ | | | Frame 2 | Frame 3 | | | ___________________________________ Frame 4 ___________________________________ Quote Link to comment Share on other sites More sharing options...
Mchl Posted February 16, 2009 Share Posted February 16, 2009 And your problem is? You're highly unlikely to get any help, if you don't show what you've come up with so far. And BTW: frames are not really good choice for web design. Quote Link to comment Share on other sites More sharing options...
Solar Posted February 17, 2009 Share Posted February 17, 2009 <frameset rows="80,*" frameborder="no" border="0" framespacing="0"> <frame src="FILENAME" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" /> <frameset rows="*,80" frameborder="no" border="0" framespacing="0"> <frameset rows="*" cols="173,*" framespacing="0" frameborder="no" border="0"> <frame src="FILENAME" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" /> <frameset rows="*" cols="*,1252" framespacing="0" frameborder="no" border="0"> <frame src="FILENAME" name="mainFrame" id="mainFrame" title="mainFrame" /> <frame src="FILENAME" name="rightFrame" scrolling="No" noresize="noresize" id="rightFrame" title="rightFrame" /> </frameset> </frameset> <frame src="FILENAME" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" title="bottomFrame" /> </frameset> </frameset> There is a little crack between the left and the right frame. But you get the idea. Quote Link to comment Share on other sites More sharing options...
TheFilmGod Posted February 19, 2009 Share Posted February 19, 2009 Why are you using frames? There is absolutely no reason why you should use a frame. You can always resort to iframes, which is a much better alternate (literally the same thing). PHP includes will do the same thing as a the typical frame src="" code. 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.