stockton Posted June 17, 2009 Share Posted June 17, 2009 Please tell me how to remove the box/border from a field defined as:- <input type="submit" id=Grid value="Grid" onClick=ItemSelected("help-files/Grid.htm")> You can if you wish see the page at http://www.stockton.co.za/khulisa-help/help.php Link to comment https://forums.phpfreaks.com/topic/162547-solved-html-remove-border-from-submit-field/ Share on other sites More sharing options...
rhodesa Posted June 17, 2009 Share Posted June 17, 2009 <input type="submit" id=Grid value="Grid" style="border:0;" onClick=ItemSelected("help-files/Grid.htm")> if you don't want the background on it either: <input type="submit" id=Grid value="Grid" style="border:0;background:none;" onClick=ItemSelected("help-files/Grid.htm")> Link to comment https://forums.phpfreaks.com/topic/162547-solved-html-remove-border-from-submit-field/#findComment-857967 Share on other sites More sharing options...
stockton Posted June 17, 2009 Author Share Posted June 17, 2009 Thank you. I did your suggested style="border:0;background:none;" and it now does what I want. Link to comment https://forums.phpfreaks.com/topic/162547-solved-html-remove-border-from-submit-field/#findComment-857973 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.