I am trying to build out my own signup and signin button
My result comes out to this
What I am trying to achieve is along the lines of this
The image gets distorted and does not show the entirety of the icon I want displayed.
<div id="signup"><input type="submit" name="" value="">Sign up</div>
#signup{
background:url(../images/sign-up.png) no-repeat;
position: relative;
z-index: 1;
cursor:pointer;
border:none;
width:50px;
height:50px;
}
How do I achieve the desired affect of the button I want?


height:50px;background? What are you expecting that to do?