Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

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

Learn More

I am author of www.shrewsburylightorchestra.org.uk and have recently added a dropdown menu nav bar, some of which works and one doesn't - why?

  • 4 个回答
  • 1 人有此问题
  • 19 次查看
  • 最后回复者为 despslo

more options

The drop down menu that doesn't work in Firefox is the Gallery - this should then show Photos 1, Photos 2 and sketches. Photos 2 has not yet been completed but the others have. The drop down menus About Us and Members work OK and I cant see why the Gallery one doesn't. They all work in Internet Explorer.

The drop down menu that doesn't work in Firefox is the Gallery - this should then show Photos 1, Photos 2 and sketches. Photos 2 has not yet been completed but the others have. The drop down menus About Us and Members work OK and I cant see why the Gallery one doesn't. They all work in Internet Explorer.

被采纳的解决方案

You closed the li by accident, so the UL that opens the drop down list is not in that LI section. There are two </li> present in the code and you should remove the one after the <a> tag.

 <li><a href ="#">Gallery</a></li>
  <ul>
   <li><a href="photos - 1.html">Photos 1</a></li>
   <li><a href="#">Photos 2</a></li>
   <li><a href="sketches.html">Sketches</a></li>
  </ul></li>

Firefox shows the second </li> in red in the page code because that tag had already been closed.

  • Firefox > Web Developer > Page Source
  • Tools > Web Developer > Page Source (Ctrl+U)
  • right-click on a web page to open the context menu and select View Page Source

Note that the page code shows more stray end tags in red, so check them all.
You can hover a red tag to get an explaining tooltip.

 </tr> (should be: <tr>)
  <td>Leroy Anderson Favourites</td>
  <td><i>Arr.</i> Calvin Custer</td>
 </tr>

http://www.shrewsburylight-orch.org.uk/

定位到答案原位置 👍 0

所有回复 (4)

more options

Hello,

Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache. Note: This will temporarily log you out of all sites you're logged in to. To clear cache and cookies do the following:

  1. Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
  2. Under "Time range to clear", select "Everything".
  3. Now, click the arrow next to Details to toggle the Details list active.
  4. From the details list, check Cache and Cookies and uncheck everything else.
  5. Now click the Clear now button.

Further information can be found in the Clear your cache, history and other personal information in Firefox article.

Did this fix your problems? Please report back to us!

Thank you.

more options

No, this made no difference at all - the drop down menu that didn't work still doesn't, but the others do. And it still works in IE but not in Chrome .

more options

选择的解决方案

You closed the li by accident, so the UL that opens the drop down list is not in that LI section. There are two </li> present in the code and you should remove the one after the <a> tag.

 <li><a href ="#">Gallery</a></li>
  <ul>
   <li><a href="photos - 1.html">Photos 1</a></li>
   <li><a href="#">Photos 2</a></li>
   <li><a href="sketches.html">Sketches</a></li>
  </ul></li>

Firefox shows the second </li> in red in the page code because that tag had already been closed.

  • Firefox > Web Developer > Page Source
  • Tools > Web Developer > Page Source (Ctrl+U)
  • right-click on a web page to open the context menu and select View Page Source

Note that the page code shows more stray end tags in red, so check them all.
You can hover a red tag to get an explaining tooltip.

 </tr> (should be: <tr>)
  <td>Leroy Anderson Favourites</td>
  <td><i>Arr.</i> Calvin Custer</td>
 </tr>

http://www.shrewsburylight-orch.org.uk/

由cor-el于修改

more options

Thank you, yes that has worked very well. I have now changed all the pages with that error on and the site is now as I wanted it. I'll check all the other stray end tags as well. Thanks again for your help.