Remove default styling from Submit button on a form?

I wanted to make my submit button simply look like a link that says “Click here to submit”… currently what I have for the submit code is below.

<input type="submit" name="submit" value="Send Request">

Thanks ahead of time!

First give this an ID and change the value attribute:

<input type="submit" name="submit" value="Click here to submit" id="submit">

Then style the button using that ID:

input#submit{
  background:none;
  border:none;
  font-size:1em;
  color:blue;
}

Hope it helps. :slight_smile:

Perfect!!! Thanks :slight_smile: