View Single Post
Unread 12-17-2007, 02:48 PM
mduke mduke is offline
Junior Member
Join Date: Dec 2007
Posts: 2
  #3  
Default Mac Firefox expanding menus don't appear...etc.

Thanks, much. I'll check that out later today.

Quote:
Originally Posted by vinyl-junkie View Post
You only need the id and class "udm" on the top level <ul> tag. Remove that from the other two instances in your code -- lines 51 and 61 in your page code (highlighted below in red). That will most likely fix your rendering problem.

Code:
<ul id="udm" class="udm">
  <li class="onclick"><a href="ugprograms/advising.html" title="Advising">Advising</a>
	<ul>
      <li class="onclick"><a href="ugprograms/faq.html">FAQ</a></li>

      <li class="onclick"><a href="ugprograms/transfer_planning.html">Transfer Planning</a></li>
    </ul>
  </li>
  <li><a href="alumni/index.html">Alumni</a></li>
  <li><a href="ugprograms/requirements.html">Major Requirements</a></li>
  <li><a href="ugprograms/es_minor.html" class="nohref">Minor Requirements</a></li>
  <li class="onclick"><a href="ugprograms/beyond.html">Learning Beyond the Classroom</a>

	<ul id="udm" class="udm">
      <li class="onclick"><a href="ugprograms/beyond_opps.html">Current Opportunities</a></li>
      <li class="onclick"><a href="ugprograms/study_abroad.html">Study Abroad</a></li>
      <li class="onclick"><a href="ugprograms/notes.html">Notes from the Field</a></li>
      <li class="onclick"><a href="ugprograms/beyond.html#Learningintern">Service Learning and Internships</a></li>
      <li class="onclick"><a href="ugprograms/ugresearch.html">Undergraduate Research</a></li>

    </ul>
  </li>
  <li class="onclick"><a href="/menu/">Undergraduate Resources</a>
	<ul id="udm" class="udm">
      <li class="onclick"><a href="ugprograms/funding.html">Funding</a></li>
      <li class="onclick"><a href="ugprograms/grad_school.html">Grad School Planning</a></li>
      <li class="onclick"><a href="ugprograms/career.html">Career Resources</a></li>

      <li class="onclick"><a href="http://depts.washington.edu/sao/" target="_blank">Student Organizations</a></li>
    </ul>
  </li>
</ul>
Reply With Quote