I have created a layout and have used Easy Button to make a vertical fly-out menu. It works just fine in Explorer, but the flyouts don't work in Firefox. In fact, I don't even get a pointer for some of the menus with Firefox. Here is the link to my web layout: http://www.rossini.com/layouts/new_layo ... iment.html
I really need some help fast, if possible, since I am up against a deadline, and I have already spent hours making this menu.
Thanks!
Menus don't display in Firefox
Re: MENUS DON'T DISPLAY IN FIREFOX
For line 3 to 5 you have this:
The first link path is good. The last two do not find their files.
Line 184 is looking for "cbjscbinsmenu.js" but doesn't find it.
Code: Select all
<LINK REL="STYLESHEET" HREF="round_corner.css" CHARSET="ISO-8859-1" TYPE="text/css">
<LINK REL="STYLESHEET" HREF="layout.css" CHARSET="ISO-8859-1" TYPE="text/css">
<link rel="stylesheet" href="menu_files/cbcscbinsmenu.css" type="text/css" />
Line 184 is looking for "cbjscbinsmenu.js" but doesn't find it.
Re: MENUS DON'T DISPLAY IN FIREFOX
Have to say the menu is the same in Firefox and IE for me, in the fact the it doesn't work in either.
And also don't get the hand pointer on the same items in both browsers.
And also don't get the hand pointer on the same items in both browsers.
- Karlis
- Site Admin
- Posts: 3605
- Joined: Mon Jul 15, 2002 5:24 pm
- Location: Riga, Latvia, Europe
- Contact:
Re: Menus don't display in Firefox
We will be looking into this.
Re: Menus don't display in Firefox
This interesting behaviour is caused by FireFox html renedring, more specifically the way FireFox tries to fix HTML errors.

The <strong> tag displayed in DOM tree is inserted by FireFox for each <li> element, even though it should be only in the beginning of the HTML document.
Simple fix: Remove <strong> from your html.
Hint: use WeBuilder 2008 for creating HTML, since it will display HTML errors instantly


The <strong> tag displayed in DOM tree is inserted by FireFox for each <li> element, even though it should be only in the beginning of the HTML document.
Simple fix: Remove <strong> from your html.
Hint: use WeBuilder 2008 for creating HTML, since it will display HTML errors instantly

Blumentals Software Programmer
- chrisjlocke
- Top Contributor
- Posts: 995
- Joined: Mon Aug 01, 2005 4:12 pm
- Location: Essex, UK
- Contact:
Re: Menus don't display in Firefox
There are more errors than that in that HTML code. 
