My PHP contact form is functioning perfectly fine, but I'm facing a challenge when it comes to styling the submit button.
Here is the current code for the button:
<input type="submit" value="Submit">
I want to enhance the button using CSS. Here is the code I intend to use:
<input type="submit" id="comment-submit" value="Submit">
The CSS for id="comment-submit" is as follows:
#comment-submit {
width: 144px;
height: 44px;
display: block;
border: 0;
font-family: "YanoneBold", Arial, sans-serif;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #fff;
text-shadow: 0px 1px 0px rgba(0,0,0,0.35);
padding: 0 4px 4px 0;
margin: 30px 0 80px 0;
}
Interestingly, the form submits successfully without any styling, but when I apply the CSS, the form becomes unresponsive.