Lid |
|
Hallo.
ik heb een probleempje, ik heb nu net een popup menu in werking gekregen, wel met wat hulp van anderen, alleen het probleem is dat het menu onder elkaar staat in plaats van naast elkaar, ze zeiden dat het met CSS opgelost moest worden, maarja ik weet daar niks van.
Kan iemand me misschien helpen?
<html>
<head>
<title>
Een Website
</title>
<style type="text/css">
a
{
font-family: tahoma;
font-size: 10pt;
color: #A9A9A9;
text-decoration: none;
}
a:hover
{
font-family: tahoma;
font-size: 10pt;
color: white;
text-decoration: none;
}
a:active
{
font-family: tahoma;
font-size: 10pt;
color: white;
text-decoration: none;
}
a:archive
{
font-family: tahoma;
font-size: 10pt;
color: white;
text-decoration: none;
font-weight:
}
</style>
</head>
<body bgcolor="#000000" align="left">
<center><img src="images/banner1.JPG" width="971" height="130"></center>
<center><img src="images/streep.JPG" width="971" height="3"></center>
<center>
<center>
<FORM NAME='menu'>
<SELECT id='popup' onChange="change_site('popup');" style="background-color:black; color:white">
<OPTION VALUE="index.php">Thuis
</OPTION>
<OPTION VALUE="links.php">Links
</OPTION>
<OPTION VALUE="info.php">Informatie
</OPTION>
<OPTION VALUE="updates.php">Updates
</OPTION>
<OPTION VALUE="zoeken.php">Zoeken
</OPTION>
<OPTION VALUE="voorwaarden.php">Voorwaarden
</OPTION>
</SELECT>
</FORM>
<FORM NAME='menu'>
<SELECT id='popup2' onChange="change_site('popup2');" style="background-color:black; color:white">
<OPTION VALUE="Support.php">Support
</OPTION>
<OPTION VALUE="Contact.php">Contact
</OPTION>
<OPTION VALUE="Faq.php">Faq
</OPTION>
<OPTION VALUE="Handleidingzoek.php">Handleidingen
</OPTION>
<OPTION VALUE="zoeken.php">Zoeken
</OPTION>
<OPTION VALUE="voorwaarden.php">Voorwaarden
</OPTION>
</SELECT>
</FORM>
<SCRIPT>
function change_site(menu) {
var site = document.getElementById(menu).value;
window.location.href = site;
}
</SCRIPT>
</center>
<center><img src="images/streep.JPG" width="971" height="3"></center>
<br>
<font color="white">
<center><b>Tekst</b></center>
<br>
Tekst<br>
Tekst<br>
Tekst<br>
Tekst<br><br>
<center><b>Tekst</b>
<br><br><br><br>
<center><img src="images/streep.JPG" width="971" height="3"></center>
<center>Tekst</center>
<center><img src="images/streep.JPG" width="971" height="3"></center>
</font>
</body>
</html>
<html> <head> <title> Een Website </title> <style type="text/css"> a { font-family: tahoma; font-size: 10pt; color: #A9A9A9; text-decoration: none; } a:hover { font-family: tahoma; font-size: 10pt; color: white; text-decoration: none; } a:active { font-family: tahoma; font-size: 10pt; color: white; text-decoration: none; } a:archive { font-family: tahoma; font-size: 10pt; color: white; text-decoration: none; font-weight: } </style> </head> <body bgcolor="#000000" align="left"> <center><img src="images/banner1.JPG" width="971" height="130"></center> <center><img src="images/streep.JPG" width="971" height="3"></center> <center> <center> <FORM NAME='menu'> <SELECT id='popup' onChange="change_site('popup');" style="background-color:black; color:white"> <OPTION VALUE="index.php">Thuis </OPTION> <OPTION VALUE="links.php">Links </OPTION> <OPTION VALUE="info.php">Informatie </OPTION> <OPTION VALUE="updates.php">Updates </OPTION> <OPTION VALUE="zoeken.php">Zoeken </OPTION> <OPTION VALUE="voorwaarden.php">Voorwaarden </OPTION> </SELECT> </FORM> <FORM NAME='menu'> <SELECT id='popup2' onChange="change_site('popup2');" style="background-color:black; color:white"> <OPTION VALUE="Support.php">Support </OPTION> <OPTION VALUE="Contact.php">Contact </OPTION> <OPTION VALUE="Faq.php">Faq </OPTION> <OPTION VALUE="Handleidingzoek.php">Handleidingen </OPTION> <OPTION VALUE="zoeken.php">Zoeken </OPTION> <OPTION VALUE="voorwaarden.php">Voorwaarden </OPTION> </SELECT> </FORM> <SCRIPT> function change_site(menu) { var site = document.getElementById(menu).value; window.location.href = site; } </SCRIPT> </center> <center><img src="images/streep.JPG" width="971" height="3"></center> <br> <font color="white"> <center><b>Tekst</b></center> <br> Tekst<br> Tekst<br> Tekst<br> Tekst<br><br> <center><b>Tekst</b> <br><br><br><br> <center><img src="images/streep.JPG" width="971" height="3"></center> <center>Tekst</center> <center><img src="images/streep.JPG" width="971" height="3"></center> </font> </body> </html>
Heb wel even al me tekst verwijdert enzovoort, want wil niet hebben natuurlijk dat dit als spam word gezien ofzo
|