MySQL interesse |
|
Goedeavond,
Ik ben blij met de site eindelyk in CSS is gelukt zit ik met het volgende probleem hij wilt niet me background instellen hij gebruikt gewoon de standaart input gedoe inplaats datgene wat ik wil weet iemand hoe dat kan?
form
<form action="" name="login_form" method="post">
<input class="input_text" type="text" name="username" value="Username" /><br />
<input class="input_text" type="password" name="password" value="Password" /><br /><br />
<center><input class="input_button" type="submit" name="login" value="" /></center>
<form>
<form action="" name="login_form" method="post"> <input class="input_text" type="text" name="username" value="Username" /><br /> <input class="input_text" type="password" name="password" value="Password" /><br /><br /> <center><input class="input_button" type="submit" name="login" value="" /></center> <form>
CSS
/* inputs, textarea's, selects etc */
.input_text {
background-image: url(images/textfield_bg.gif);
width: 153px;
height: 19px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}
.input_button {
background-image: url(images/button_bg.gif);
width: 51px;
height: 16px;
}
/* inputs, textarea's, selects etc */ .input_text { background-image: url(images/textfield_bg.gif); width: 153px; height: 19px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; } .input_button { background-image: url(images/button_bg.gif); width: 51px; height: 16px; }
|