• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML Help

Homerboy

Lifer
Whenever I create a drop down form in my website, there is a "row" that is created under it every time... there is no <tr> or anyting listed but its a dead space I can NOT clear out:


<form name="form1">
<select style="font:10px verdana, arial, sans-serif;text-decoration:none;" name="menu" onChange="location=document.form1.menu.options[document.form1.menu.selectedIndex].value;">
<OPTION SELECTED>---- SELECT LINK ----
<%= "<OPTION VALUE=\"gminfo.jsp?teamname=" + request.getParameter("teamname") + "\">" %><%=request.getParameter("teamname")%>
Full GM Info
<%= "<OPTION VALUE=\"rosters_ratings.jsp?teamname=" + request.getParameter("teamname") + "&amp;sortfield=teamorder&amp;desc=false" + "\">" %><%=request.getParameter("teamname")%>
Player Ratings
<%= "<OPTION VALUE=\"rosters_stats.jsp?teamname=" + request.getParameter("teamname") + "&amp;sortfield=points" + "\">" %><%=request.getParameter("teamname")%>
Player Stats
<%= "<OPTION VALUE=\"scouting.jsp?teamname=" + request.getParameter("teamname") + "\">" %><%=request.getParameter("teamname")%>
Scouting Reports
<OPTION VALUE="lineups.jsp"> League Rosters and Lineups</select></form>
 
Back
Top