for any interested the site is
http://www.dynamitedogtraining.com/
i saw the issue. there are a few issues it
could be... personally i think it is due to you nav menu "layout"...
you have a <ul> set for each <li> and then inside the <li>'s you have random <ul></ul> ... idk why that is there or if it is remnants from old code or... i would remove those... also some of your li's have positioning... i am assuming that is for ur drop down menu but idk... if not then get rid of it... if all your li's are floated then they will all fall into place... i do though think that the primary issue is due to the
Code:
<ul>
<li><a href="home.html">Home</a>
<ul>
</ul> <!-- end inner UL -->
</li>
<!-- end main LI -->
</ul> <!-- end main UL -->
<ul>
<li><a href="aboutus.html">About</a>
<ul>
</ul> <!-- end inner UL -->
</li>
<!-- end main LI -->
</ul> <!-- end main UL -->
that is all extra... you can have just
Code:
<ul>
<li> link one </li>
<li> link two </li>
<li> link etc </li>
</ul>