You can try reducing the padding / margins on the widget_smartslider3 class via Additional CSS under your Customizer.
Are you using a page builder, such as Elementor?
For the section you can reduce the Margin or Padding.
@carike do you know what CSS to add?
@dtwiss The theme has a build in Home page widget area, where I add my smart slider 3 to 🙂
@dtwiss Thanks, but when I use this css:
p {
margin: 25px 50px;
}
it change margins of the newsletter subscription widget, any idea of how to make it change the slider margins instead?
In Google, right-click on the slider and choose ‘Inspect’.
Under ‘Styles’ you’ll see the element name… such as “.n2-ss-slider .n2-ss-layer-content”.
Try using .n2-ss-slider .n2-ss-layer-content instead of p.
It worked with this code:
.widget-area .widget:before {
margin: -30px 50px;
}
Thanks!! 🙂
@ebberiksen Glad to hear!