Input button with font Awesome

formsiconsinput

So, I have this button inside a form:

<input type="submit" value="Entrar" />

and I want it to display ths fontawesome's icon, which works like any other icon feature in css.

<i class="icon-circle-arrow-right icon-large"></i>

but I've tried a few ways and none worked! Thanks !

Best Answer

Not only the input must be changed to as:

<button type="submit">
   <i class="icon-circle-arrow-right icon-large"></i>
</button>

but also the css should match:

form button {
padding-top:10px;
background-color:transparent;
border:none;
font-size:30px;
float:right;
color:#333333;
}