Habe ein Problem mit den Button.
Ich möchte eine feste größe für die Buttons angeben, damit sie alle gleich groß sind egal wie sie Beschriftet sind.
So wie ich es jetzt gelöst habe sieht das ziemlich bescheiden aus.
Beispiel:
<input type=button
value=" Startseite "
style="background='#FF0000'; font-size:12px; cursor:hand"
onmouseover="this.style.background='#FF5353'; this.style.color='#FFFFFF'; window.status='Startseite ... '; return true;"
onmouseout="this.style.background='#FF0000'; this.style.color='#000000'; window.status=''; return true;"
onClick="window.open('main.htm', 'Main');">
<br>
<BR>
<input type=button
value=" Webcams "
style="background='#FF0000'; font-size:12px; cursor:hand"
onmouseover="this.style.background='#FF5353'; this.style.color='#FFFFFF'; window.status='Startseite ... '; return true;"
onmouseout="this.style.background='#FF0000'; this.style.color='#000000'; window.status=''; return true;"
onClick="window.open('cam/index.htm', '_blank');">
<br>
<BR>