Superfish Expands Beyond Page IE6
I am trying to use superfish plugin for navigation and its working great in every browser except IE6. When the menu scrolls down to far, every browser expands the current page as needed to accomodate the menu, IE6 does not and the menu is off the page, below whats accessible.
Is it possible to correct that behavior? Let me now what other information you need from me. below is my menu
- <div>
<ul class="sf-menu">
<li class="current">
<a href="searchpage.asp">Type</a>
<ul>
<%
sql = "select * from type order by name"
set rstype = conn.execute(sql)
do while not rstype.eof
%>
<li class="winesearch_level2" style="background:white;">
<a href="searchpage.asp?type=<%=rstype("id")%>"><%=rstype("name")%></a>
</li>
<%
rstype.movenext
loop
set rstype = nothing
%>
</ul>
</li>
<li>
<a href="search_all.asp">Style</a>
<ul>
<%
sql = "select * from style order by name"
set rsstyle = conn.execute(sql)
do while not rsstyle.eof
%>
<li class="winesearch_level2" style="background:white;">
<a href="search.asp?style=<%=rsstyle("id")%>"><%=rsstyle("name")%></a>
</li>
<%
rsstyle.movenext
loop
set rsstyle = nothing
%>
</ul>
</li>
<li>
<a href="search_all.asp">Food Pairings</a>
<ul>
<%
sql = "select * from food_type order by name"
set rspairing = conn.execute(sql)
do while not rspairing.eof
food_typeid = rspairing("name")
%>
<li class="winesearch_level2" style="background:white;">
<a href="#"><%=rspairing("name")%></a>
<ul>
<%
sql = "select pairing.id as pairing_id, pairing.name as pairing_name, pairing.food_type,food_type.id as food_type_id, food_type.name as food_type_name"
sql = sql & " from pairing"
sql = sql & " inner join food_type"
sql = sql & " on pairing.food_type=food_type.id"
sql = sql & " where food_type.name='" & food_typeid & "'"
sql = sql & " order by pairing_name"
set rsfoodtype = conn.execute(sql)
do while not rsfoodtype.eof
%>
<li class="winesearch_level2" style="background:white;">
<a href="search_food.asp?pairings=<%=rsfoodtype("pairing_id")%>"><%=rsfoodtype("pairing_name")%></a>
</li>
<%
rsfoodtype.movenext
loop
set rsfoodtype = nothing
%>
</ul>
</li>
<%
rspairing.movenext
loop
set rspairing = nothing
%>
</ul>
</li>
</ul>
</div>