Making a form in php, but the "Send" button looks like crap in the browser (its just a dark grey background with "send" on top) this has never happened before, and it was always a nice rounded button that "popped" of the screen, and was an obvious button!

link|improve this question
3  
And what is your question? – Mahesh Sep 13 '11 at 5:50
how do i make the button look like a button again? – thomas Sep 13 '11 at 5:51
1  
Can you post some code. Buttons are normally styled with css so you may need to add the css to your php form. – BandonRandon Sep 13 '11 at 5:56
feedback

2 Answers

Are you familiar with Chrome's developer tools, or Firebug for Firefox? In case not: Both have handy tools that let you "inspect" elements and see what CSS rules are applying. I would place my bet that there is a CSS rule that is too broad, and inadvertently applies to your input button.

Are you using a CSS reset file? Those can occasionally be a pain. Either way, a CSS Normalize will probably be of help

http://necolas.github.com/normalize.css/

link|improve this answer
feedback

Make PHP generate a button in HTML, then set the button to perform the PHP function you want when it's clicked.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.