PHP beginner |
|
Ik heb een menu alleen staat de tekst niet precies in het midden
Zie
http://somaqann.so.funpic.de/psvfanaat/
#topnav ul li {
margin: 0px;
padding: 0px;
list-style: none;
float: left;
}
#topnav span {
display: none;
}
#topnav a.menu {
display: block;
height: 33px;
width: 80px;
text-decoration: none;
color:#FFFFFF;
font-family:"Trebuchet MS";
font-size:13px;
}
#topnav a.menu:hover {
background: url('images/hover.gif') no-repeat;
}
#topnav a.menu:hover, a.menu:active {
background: url('images/hover.gif') no-repeat;
}
#topnav ul li { margin: 0px; padding: 0px; list-style: none; float: left; } #topnav span { display: none; } #topnav a.menu { display: block; height: 33px; width: 80px; text-decoration: none; color:#FFFFFF; font-family:"Trebuchet MS"; font-size:13px; } #topnav a.menu:hover { background: url('images/hover.gif') no-repeat; } #topnav a.menu:hover, a.menu:active { background: url('images/hover.gif') no-repeat; }
En ik had nog een probleem in het content heb ik z'n streep dat de onderscheiding maakt tussen de grote content en de mini content vakken.
Alleen als de tekst lang is bij het grote content schiet hij door naar het kleine content
Dus mij vraag hoe kan instellen dat de streep mee loopt als de tekst lang is
CSS
#administratiecontent {
float:left;
width:146px;
border-right:3px solid #e3e3e3;
height: 284px;
font-family:"Trebuchet MS";
font-size:11px;
text-align:center;
}
#administratiecontent { float:left; width:146px; border-right:3px solid #e3e3e3; height: 284px; font-family:"Trebuchet MS"; font-size:11px; text-align:center; }
|