I'm creating a simple site that has menu and a submenu. When the page is loaded, it's showing Re-Board and its submenu just like it has been hovered from nowhere. I want the Home li to be the default menu when the page is loaded. What's the problem? I have checked my css and js files and done some testing but the problem stills exist. Please help. Many thanks !!!
The HTML structure is like this.
<ul id="topnav">
<li style=""><a href="">Home</a></li>
<li>
<a href="">Company</a>
<span>
<a href="">The Company</a> |
<a href="">The Team</a> |
<a href="">Careers</a>
</span>
</li>
<li>
<a href="">Re-Board</a>
<span>
<a href="">What We Do</a> |
<a href="">Our Process</a> |
<a href="">Testimonials</a>
</span>
</li>
<li><a href="">Design Database</a></li>
<li><a href="">New</a></li>
<li><a href="">Catalog</a></li>
<li class="none-b"><a href="">Contact us</a></li>
</ul>
My full code :)
