Hello,
You can follow either of the 2 steps
(1) Go to Appearance > Widgets > Text Widget (the widget you have used). Here you can add the following code around your email subscription form’s shortcode (you can change the padding px)
<div style="padding:20px;">[email-subscribers-form id="1"]</div>
(2) Right click on the webpage where your subscription form is added > Select Inspect. Search for a class named widget_email-subscribers-form and add the padding in the element.style{ } section
padding: 20px;
-
This reply was modified 6 years, 3 months ago by
Asmi Patel.
-
This reply was modified 6 years, 3 months ago by
Asmi Patel.
@timemoves
I think what @asmipatel meant to say in 2nd option is add custom css on widget widget_email-subscribers-form class.
You can add following custom css using plugin or directly into your theme.
.widget widget_email-subscribers-form {
padding: 20px;
}
Hope that helps.
@timemoves
Yes, the second option I meant to say is exactly explained by @malayladu
(adding the custom css)
@timemoves
Hope the code provided by @malayladu helps.
Please do not hesitate to get back to us if you have any further queries.