Archived topic
Submit Buttons in Forms - Problem
5 replies · Started by Dmitry Bychenko on February 21, 2016
Hi, guys,
How to fix this problem:
Normally, when you create WP+GP site, Submit Buttons look like this.
I've tried it on three different hostings/servers.
But on my normal site Submit Buttons look like this.
How to make Submit Buttons on my normal site to look that good as that good fatty buttons from example 1?
Looks like you might have some CSS from a plugin overwriting the padding on the buttons.
Can you link me to your site?
tradebonds.ru
2 buttons from my example are from google feedburner plugin. i tried to reinstall the plugin, same result.
another button - is button from the code/not from plugin. i think default css should be applied to this button, but looks like it appears with no css.
The optimizePress plugin you have installed is removing padding from all buttons with this CSS:
button {
overflow: visible;
padding: 0;
border: 0;
position: relative;
outline: 0;
text-transform: none;
}
I have no idea why they would do that, but you can overwrite it with your own CSS:
button {
padding: 10px 20px;
}
Adding CSS: https://generatepress.com/knowledgebase/adding-css/
thanks, Tom, it's working.
i've pasted
button {
padding: 10px 20px;
}
into your plugin simple css. hope thats what you meant.
Perfect :)
