JBwebdes
10-28-2011, 04:05 PM
I'm using the Anylink CSS menu on a web site. I have 3 drop-down menus on each site page. Each drop-down menu is created using a set of div tags, such as:
<div id="submenu2" class="anylinkcss">
<ul>
<li><a href="contractor_benefits.php">Benefits to Contractors</a></li>
<li><a href="contractor_testimonials.php">Contractor Testimonials</a></li>
</ul>
</div>
When I have these drop-down menu chunks of code on the page, it causes my browser scroll bar to become longer and for there to be about 300 pixels height of blank space below the content of the web page.
I tried moving the drop-down menu div tags to the bottom of the HTML code before the closing body tag. That did not help. When I deleted the drop-down menu div tags from the code, the blank space disappeared.
Any suggestions on how to get rid of this empty space at the bottom of the site pages? Thanks!
<div id="submenu2" class="anylinkcss">
<ul>
<li><a href="contractor_benefits.php">Benefits to Contractors</a></li>
<li><a href="contractor_testimonials.php">Contractor Testimonials</a></li>
</ul>
</div>
When I have these drop-down menu chunks of code on the page, it causes my browser scroll bar to become longer and for there to be about 300 pixels height of blank space below the content of the web page.
I tried moving the drop-down menu div tags to the bottom of the HTML code before the closing body tag. That did not help. When I deleted the drop-down menu div tags from the code, the blank space disappeared.
Any suggestions on how to get rid of this empty space at the bottom of the site pages? Thanks!