Warning: Please always include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.
The HTML for your main tabs contain rel attributes that point to non existent drop down DIVs. Namely:
Code:
<ul>
<li><a href="about.php" rel="about">About Us</a> </li>
<li><a href="patient.php" rel="patient">Patient Resources</a> </li>
<li><a href="office.php" rel="office" >Office Information</a> </li>
<li><a href="services.php" rel="services">Services</a> </li>
<li><a href="testimonials.php" rel="testimonials">Testimonials</a> </li>
<li><a href="referrals.php" rel="referrals">Referring Physicians</a></li>
</ul>
You should either remove the attributes in red above, or define the drop down DIVs they point to.
Bookmarks