Sidebar Widget Spacing

Is there a way to set the spacing between widgets on the primary sidebar?

Hi,

If you’re referring to widgets added via the builder then the spacing between widgets is determined by your theme. Which theme are you using?

Hello. I’m using the Beaver Builder Theme.

The BB theme adds margin-bottom: 40px; for widgets. You can add the CSS below to override this, feel free to change the value to whatever you like.

.fl-widget {
    margin-bottom: 10px;
}

Hi Danny,
Thank you for the help. I changed it to margin-top because it didn’t change the space between the first and second widget, which worked.
On another note, what about changing the space between the Widget label and the widget?

Thanks again for helping.
Vince

You can use the CSS below to change the margin of the widget title.

.fl-widget .fl-widget-title {
    margin-top: 15px;
    margin-bottom: 15px;
}

Danny,
Can’t thank you enough! Very much appreciated.
Vince