-Anne-
Gebruiker
- Lid geworden
- 30 apr 2007
- Berichten
- 15
Mijn menu is te smal.. Dit wil zeggen dat de menuknoppen maar half zichtbaar zijn.
Code van menu.html
en het bestand stijlen.css
een pagina:
kan iemand mij hiermee helpen?
Code van menu.html
HTML:
<HTML>
<HEAD>
<link rel="stylesheet" type="text/css" media="screen" href="CSS/stijlen.css"/>
</HEAD>
<BODY bgcolor="#fffddf">
<table align="center">
<TR>
<TD width="110px" height="90px" class="menuItem">
<a class="link" href="../home.html" target="mainframe"><img style="border-style:none;" src="graphic/knophome.jpg"></a>
</TD>
<TD width="110px" height="90px" class="menuItem">
<a class="link" href="../pag1.html" target="mainframe"><img style="border-style:none;" src="../pag1.jpg"></a>
</TD>
<TD width="110px" height="90px"class="menuItem"><a class="link" href="../pag2.html" target="mainframe"><img style="border-style:none;" src="../pag2.jpg"></a>
</TD>
<TD width="110px" height="90px" class="menuItem">
<a class="link" href="../pag3.html" target="mainframe"><img style="border-style:none;" src="../pag3.jpg"></a>
</TD>
<TD width="110px" height="90px" class="menuItem">
<a class="link" href="page/contact.html" target="mainframe"><img style="border-style:none;" src="graphic/knopcontact.jpg" width="110" height="90"></a>
</TD>
</TD>
</TR>
</table>
</BODY>
</HTML>
en het bestand stijlen.css
Code:
.bloklinks{
float:left;
width:12%;
background-color: #fffddf;
}
.content{
float:left;
width:80%;
height:90%;
background-color:#fffddf;
border: 2px;
border-style: solid groove;
border-color: #000000;
padding:10px;
}
.standaard{
background-color:#fffddf;
}
.menu {
background-colour: #fffddf;
background-repeat:no-repeat;
height: 90px;
width: 110px;
}
.menuItem {
background-color: #fffddf;
text-align: center;
border-style: solid;
border-color:#000000;
border-width:2px;
height: 90px;
width: 110px;
}
.link {
text-decoration:none;
color: #000000;
}
een pagina:
HTML:
<HTML>
<HEAD>
<link rel="stylesheet" type="text/css" media="screen" href="../css/stijlen.css"/>
<title></title>
</HEAD>
<BODY class="standaard">
<div class="bloklinks">
</div>
<div class="content">
<FONT FACE="Verdana, Tahoma, Century Gothic, Times New Roman" SIZE="2px" color="black">
tekst
<br><br><br>
<div class="bloklinks">
</div>
</BODY>
</HTML>
kan iemand mij hiermee helpen?