View Full Version : Frames
ness
July 24th, 2004, 04:35 AM
How do I get rid of the frame easily on my web page? I don't understand html very well but i'm thinking there must be a way to delete them. I try highlighting everything then Frames> delete frames but its never highlighted for me to hit delete. Any help would be greatly appreciated and would save me another 4 hours of trying!
renegade600
July 24th, 2004, 04:40 AM
post the link if the site is not warez or adult. It is easier to give specifics this way.
normally all you have to do is not use the main frame page and call up the pages individually.
ness
July 24th, 2004, 05:06 AM
Thanks Dan I was thinking I could do that but wasn't game! Its taken me all morning to get the main heading off the frame and insert into the new index page. Grrr I wish I was a guru.
My next mission is to add a scroll bar in frontpage. Why do they make these things so hard!
The addy is www.antmanhelmetdesign.com
As you can see I have a lot of work to do LOL. I think i've rebuilt the index in 800X600 now but its slow going. I'll be scared to upload it incase I've stuffed up!
renegade600
July 24th, 2004, 05:13 AM
the best way to get rid of the frame is to delete your index.html and rename your start.html to index.html
go ahead and upload. this forum is here to help if you have problems. You can upload it into a test folder online and play with it to see if it works properly.
ness
July 24th, 2004, 05:22 AM
Thanks so much Dan, that makes it simpler. I'm still trying to get a scroll bar in so once I do that i'll upload.
HippyWarlock
July 31st, 2004, 02:33 PM
Here's the code from my site that just has a left and right frame (I lost interest in a header/title frame after it gave me too much greif).
</head>
<frameset cols="17%,*" border=2>
<frame name=sitemenu src="sitemenu.html" marginheight=4>
<frame name=mainframe src="mainframe.html">
</frameset>
This code is all you need in (in my case my 'index.html') your file.
remember to give the frames 'names', as above, and use target="name" to say in what frame you want something to open. ie my 'sitemenu.html' file calls a html file into the "mainframe" thus:
<A target="mainframe" HREF="pchelp/cpu.html">CPU</A>
Try here:
http://wp.netscape.com/assist/net_sites/frames.html