Link to home
Start Free TrialLog in
Avatar of optical1
optical1

asked on

Frames and Netscape

The following code works fine in Internet Explorer the footer operates to navigate pages to the target "cen" in the center top half, Why doesn't it work.

See http://www.productlist.com/_prod1.htm
for the frameset on the Internet.

Code:<frameset framespacing="0" border="false" frameborder="0" rows="*,40">
  <frame src="_index_.htm" name="cen" marginwidth="0" marginheight="0" frameborder="0"
  border="false" scrolling="true" target="Cen">
  <frame src="_header_footer.htm" name="footer" marginwidth="no" marginheight="no"
  frameborder="0" border="false" scrolling="false" target="Cen">
  <noframes>
  <body>
  </body>
  </noframes>
</frameset>

Avatar of jbirk
jbirk

It could be the capitalization (most things on the web are case sensitive).  The name specified is "cen" and the target is "Cen".  If that doesn't work it must be something in the page itself...

-Josh
Incidentally, the link you provided doesn't have a frameset, is it a link on that page that you're referring to?
Oh! I think I found it.  It's not the capitalization.  It's because the top window is already named cen.  I clicked on home on the page you referred to, and it opened the home page in a new window, which is apparently named 'cen', so the links which target cen, replace the top frameset instead of the frame you want (also named cen but occuring later in the stack).

If you remove this line:
<BASE TARGET="cen">
from _prod1.htm, it should be fixed.

-Josh
 Not sure about whether this will fix the problem or not but noticed a few things.

   1) Anywhere you have border="false" should probably be border=0  I think that Netscape likes integer values not true/false.  This might explain why IE worked fine, I think it uses the framespacing attribute normally.

   2)  The frame tag doesn't have a border attribute as far as I know so having that in the frame tags may not be helping.  Probably isn't gonna screw it up much, but couldn't help.

  Like I said, these probably won't fix anything, but maybe they'll help.
optical1, how's it coming on this?  I'm answering with this comment because I believe I solved your problem with my previous comment.  If not, please state what's going on now, and we can still help you to solve it.

-Josh
ASKER CERTIFIED SOLUTION
Avatar of jbirk
jbirk

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial