搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

My web page will load completely on IE but not in firefox, I get partial loading but when clicking on the menu items nothign appears is there a code missing here somewhere? Web site is www.altmar.com

  • 4 个回答
  • 1 人有此问题
  • 4 次查看
  • 最后回复者为 cor-el

more options

My web page will load completely on IE but not in Firefox where I only get the menu bar on the left side of the page. When clicking on the menu items nothing appears is there a code missing here somewhere?

My web page will load completely on IE but not in Firefox where I only get the menu bar on the left side of the page. When clicking on the menu items nothing appears is there a code missing here somewhere?

所有回复 (4)

more options

My guess is that there is some type of code error. These types of problems tend to occur when trying to support IE.

more options

http://www.altmar.com = doesn't work any better in Opera or Safari.

This line isn't being read - FRAMESET ROWS="192,*" frameborder-none"

and without a DTD or Doctype the latest browsers that support HTML5 aren't going to read and display that page correctly.

more options

Thanks. To solve the problem where would I go to find the solution? Is it a different language I now need to use for HYML5? Do you have the solution. Is it a simple line of command that I need to install? I am totally lost here.

more options

All frames are displayed in the little frame at the left and not in the frame at the right.

Move the third frame out of the frameset as the last child of that frameset

<HTML>
<HEAD>
<TITLE>AltMar 2006</TITLE>
</HEAD>

<FRAMESET COLS="156,*" border=0">

 <FRAMESET ROWS="192,*" frameborder-none" >    
  <FRAME SRC="AltMar Leaf.gif" WIDTH=148 HEIGHT=184 MARGINWIDTH=1 MARGINHEIGHT=1>
  <FRAME SRC="directory.html"> 
 </FRAMESET>

 <FRAME SRC="home.html" NAME="MAIN-WINDOW">

</FRAMESET>
</NOFRAMES>

</HTML>

由cor-el于修改