aerial_dude
07-20-2003, 06:22 AM
I'm having problems getting my frames and drop down menu to work. I've looked through all of the source and everything, and I can't find anything wrong. Can someone please help me figure out my error?
>> http://www.geocities.com/bts_03/rubberband/index.html
--Thank you!
-*||Chris||*
Dude128
07-20-2003, 06:30 AM
it's probably not working because you're not using the menu that targets frames :)
get the code here: http://www.lissaexplains.com/fun.shtml
also, I saw you had a link targeted to "bottom"- it should be "home" because that's the name of your frame.
aerial_dude
07-20-2003, 08:03 PM
I think I am using the menu that targets frames, but also just my link that is supposed to target the bottom/home frame doesn't work properly. It should go to that page, but it just opens up another main.html page.
When you click on the "click here" link, the page nodropdown.html (or something) should come up in the bottom section, but another copy of main.html shows.
MaGiCSuN
07-20-2003, 08:17 PM
that's because nodropdown.html has a framecoding on it...
so have the other pages.... you have got the same page for all the pages, they all have frames on them. Change them to one page and they should be fine.
it's OR frameset code OR normal html codes like content... not both like you have here:
<html>
<head>
<title>History</title>
</head>
<style>
a:link {text-decoration:none;color:white}
a:visited {text-decoration:none;color:white}
a:hover {text-decoration:overline;color:blue;font-weight:bold}
</style>
<frameset rows="25%,75%" border="no">
<frame src="top.html" name="top" scrolling="no">
<frame src="home.html" name="home">
</frameset>
<body bgcolor="#000000" text="blue">
<font face="comic sans ms" font size="3">
>> History of the Band
</body>
</html>
take out the frameset coding.. you can't have both
Love,
Mirna
aerial_dude
07-20-2003, 11:41 PM
Yay! Thank you sooo much!