I want to add a little margin space at the bottom of the addthis widget on my website. I have a wordpress website and want to know where in the CSS I can add a little space below the widget so that it is not right up against another widget that is immediately below it.
Where you add this is dependent upon how your theme is set up, but this will add a 5 pixel margin below the AddThis buttons:
.addthis_toolbox {
margin-bottom: 5px;
}
You'll need to add that either to your theme's CSS file or to your theme's header in between <style></style> tags. If you're not comfortable altering the code yourself then I would ask a developer to do it for you.
This question is closed to new answers.