I have the same question. The fields are too wide and too spaced out, I’d like to change that. How would I do that? Thanks!
Hello, you will need to edit your style.css in your theme,
I was thinking about creating a css style for the form but I would not be able to style it to meet everyones requirements.
To style the form you would start with something like this.
.sml_subscribe {}
.sml_subscribe p.prepend {}
.sml_subscribe p.sml_thankyou {}
.sml_subscribe p {}
.sml_subscribe p label {}
.sml_subscribe p label input {}
.sml_subscribe p input[type=submit] {}
I’ve used the above to edit parts of the widget but I’d like to center the submit button and I’m having trouble with this. How can I go about centering the submit button. I can’t seem to do it using CSS attributes within the above code
`.sml_subscribe {}
.sml_subscribe p.prepend {}
.sml_subscribe p.sml_thankyou {}
.sml_subscribe p {}
.sml_subscribe p label {}
.sml_subscribe p label input {}
.sml_subscribe p input[type=submit] {} `
Hello!
You can use something like this.
.sml_subscribe p.sml_submit { text-align: center; }