ik heb m'n site volledig opgebouwd met CSS.
Alle mogelijke rare dingen die je in IE wel ziet en in FF niet er uit gehaald.
op ééntje na die ik er maar niet uit krijg.
http://www.envyum.nl/ffie.jpg
Op bovenstaande afbeelding is links een screenshot van IE, en rechts van FF..
De DIV waar de search in staat is:
#search{
width:188px;
height:17px;
*width:200px;
*height:10px;
border:1px solid #cbcbcb;
background-image:url(../img/spacer.jpg);
font-family: tahoma;
font-color: #4e4e4e;
font-size: 10px;
font-weight: bold;
padding: 5px;
margin-bottom: 5px;
}
en het groene balkje er boven:
#searchbar{
width:200px;
height:10px;
background:#28cacc;
margin-bottom:1px;
}
En het formulier zelf:
-----------------------CSS-----------------------------------------
.form{
font-family: tahoma;
font-size: 9px;
color : #373737;
}
.submitbutton{
font-family:tahoma;
font-size:10px;
color:#232323;
font-weight:bold;
background:none;
border:none;
}
-----------------------HTML-----------------------------------------
<form action="index.php" method="POST">
<input type="text" name="zoek" size="27" class="form" />
<input type="submit" name="search" value="Zoeken" class="submitbutton" />
</form>
Iemand een oplossing?
Alvast bedankt!