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!
2
-
how do i make the button look like a button again?thomas– thomas2011-09-13 05:51:45 +00:00Commented Sep 13, 2011 at 5:51
-
1Can you post some code. Buttons are normally styled with css so you may need to add the css to your php form.Brooke.– Brooke.2011-09-13 05:56:46 +00:00Commented Sep 13, 2011 at 5:56
Add a comment
|
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