1

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? Commented Sep 13, 2011 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. Commented Sep 13, 2011 at 5:56

2 Answers 2

3

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/

Sign up to request clarification or add additional context in comments.

Comments

0

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.