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.
Thanks ahead of time!HTML Code:<input type="submit" name="submit" value="Send Request">
| SitePoint Sponsor |


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.
Thanks ahead of time!HTML Code:<input type="submit" name="submit" value="Send Request">

First give this an ID and change the value attribute:Then style the button using that ID:HTML Code:<input type="submit" name="submit" value="Click here to submit" id="submit">Hope it helps.Code:input#submit{ background:none; border:none; font-size:1em; color:blue; }![]()


Perfect!!! Thanks![]()
Bookmarks