PTBDrummer
05-20-2003, 03:09 AM
Why can't I insert a bottom frame? It seems like I've tried everything. Someone please let me know. This would be greatly appreciated, thanks.
|
View Full Version : bottom frames PTBDrummer 05-20-2003, 03:09 AM Why can't I insert a bottom frame? It seems like I've tried everything. Someone please let me know. This would be greatly appreciated, thanks. amicus 05-20-2003, 03:11 AM can you post your code PTBDrummer 05-20-2003, 03:37 AM <html> <head> <title>Point The Blame</title> </head> <frameset rows=760,40> <frame src="menu2.html" name="bottom" scrolling=no> <frame src="content.html" name="top" scrolling=no> </frameset> <body> </body> <noframes> <a href="your main page.html">Click Here</a> </noframes> </html> amicus 05-20-2003, 03:56 AM i'm not sure where the error was but i switch around the 'top' frame to the top position and the 'bottom' to the bottom position. i also changed the 'noframe' tag while i was at it. other then that i don't see anything wrong. give it a try, if it's not right we'll take another crack at it. <html> <head> <title>Point The Blame</title> </head> <frameset rows="760,40"> <frame src="content.html" name="top" scrolling="no"> <frame src="menu2.html" name="bottom" scrolling="no"> </frameset> <noframes> <body> <a href="your main page.html">Click Here</a> </body> </noframes> </html> PTBDrummer 05-20-2003, 04:41 AM Thanks a lot dude. Now I'm just having the problem with centering the stuff. I've tired inserting "<center> rest of code here </center> in several places, and neither have worked. Let me know what you suggest. Dude128 05-20-2003, 04:51 AM you mean you're trying to center the content inside the frames? are you putting the <center> tag on the page that is actually displayed inside the frame, or on the frameset page? it should go on the page inside the frame. if you still have problems, could you post the code or a link to the page? PTBDrummer 05-20-2003, 06:12 PM Point The Blame (http://www.geocities.com/pointtheblamemusic/main.html) Why is there that scroll area below the menu? Here is my code: <html> <head> <title>Point The Blame</title> </head> <frameset rows="550,50" border=0 frameborder=0 framespacing=0> <frame src="content.html" name="top"> <frame src="menu2.html" name="bottom" scrolling="no"> </frameset> <noframes> <body> <a href="your main page.html">Click Here</a> </body> </noframes> </html> |