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!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

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.