Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

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