If you are using the [new] flexbox based layout, adding this CSS to your theme, or the additional CSS panel in the Customizer, should do it:
.scriptlesssocialsharing__buttons a.button {
margin-right: 15px;
}
If you are using the [older] table based layout, you can add this CSS instead:
.scriptlesssocialsharing-buttons {
border-spacing: 15px 0px;
}
The layout choices are “Button Container CSS” on the plugin settings page. Hope this helps you get started.
Thanks, Robin! That works, and is indeed a good start.
Now I need to figure out a way not to have the gap on the far left and right sides as well (since I’d like the buttons to span the width of the page).
Thanks again!