Sebastian: Verweisliste als Auswahlliste groesser 11 Zeilen

Beitrag lesen

Ich kriegs einfach nicht hin, dass die Verweisliste nach dem Aufklappen mehr als 11 Zeilen anzeigt, sie soll aber mehr, z.B. 15 Zeilen anzeigen. tja.

<HTML>
<head>

<script language="JavaScript">
<!--
function Go(x)
{
 if(x == "nothing")
 {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   return;
 }
 else if(x == "end") top.location.href = parent.frames[3].location;
 else
  {
   parent.frames[3].location.href = x;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
  }
}
//-->
</script></head>

<body bgcolor="#1E5F73">

<form>
<select size=1 name="Auswahl"
onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)"
style="width:420px; background-color:#FF0000; font-size:15pt; font-family:Arial,sans-serif,bold;" width=350>

<option value="nothing">Wählen Sie bitte eine Kategorie:
<option value="report.htm">report
<option value="people.htm">people
<option value="architecture.htm">architecture
<option value="specials.htm">special's
<option value="experiments - art.htm">experiments / art
<option value="landscape.htm">landscape
<option value="art-events.htm">art-events
<option value="nudes.htm">nudes
<option value="streetlife.htm">streetlife
<option value="stills.htm">stills
<option value="stills2.htm">stills2
<option value="people & nature.htm">people & nature

</select>

</form>

</BODY></HTML>