DavidStokes
06-16-2012, 06:13 PM
I've an image I made in photoshop which i want to use for my site.
I've attached it.
This is for people to upload things to my site.
I need to get that image into a working text are and submit button.
I've tried to use classes with CSS and html but it's not coming out. right.
here is the html and CSS i'm using
<div id="button">
<form id="form1" class="form" name="form1" method="post" action="">
<label for="submit"></label>
<input type="text" name="submit" id="submit" />
<input name="button2" type="submit" class="buttonStyle" id="button2" />
</form></div>
#button{
background-image:url(upload_bar_bg.png);
background-repeat:no-repeat;
width:650px;
height:65px;
}
.buttonStyle {
border: none;
background-image:url(submit_button.png);
background-repeat:no-repeat;}
.form{
height:65px;}
I'm not getting the height in the text area and the button is completely cut off.
Any suggestions ?
I've attached it.
This is for people to upload things to my site.
I need to get that image into a working text are and submit button.
I've tried to use classes with CSS and html but it's not coming out. right.
here is the html and CSS i'm using
<div id="button">
<form id="form1" class="form" name="form1" method="post" action="">
<label for="submit"></label>
<input type="text" name="submit" id="submit" />
<input name="button2" type="submit" class="buttonStyle" id="button2" />
</form></div>
#button{
background-image:url(upload_bar_bg.png);
background-repeat:no-repeat;
width:650px;
height:65px;
}
.buttonStyle {
border: none;
background-image:url(submit_button.png);
background-repeat:no-repeat;}
.form{
height:65px;}
I'm not getting the height in the text area and the button is completely cut off.
Any suggestions ?