Leo
(@leohsiang)
Hi there,
Any chance you can link us to the page in question?
Let me know 🙂
I linked to a screenshot in the original post, but now I’ve substituted a link to the page. I had to put spacers in underneath the buttons, which is what I’ve consistently done. (I develop websites for authors, so I use a LOT of buttons… I finally got tired of wondering why I always have to put spacers underneath them!!)
ying
(@yingscarlett)
Hi there,
The space you are seeing above the buttons is from the paragraphs above the buttons, as the paragraphs have a default margin-bottom set to 1.5em.
What about the (lack of) space below the buttons?
ying
(@yingscarlett)
The button itself does not have any spacing around it as WP sets its margin to 0. GP theme does not add any spacing to it as well, would you like to add spacing to it? If so, you can try this CSS. The CSS includes both top and bottom margin, you can remove the margin-top if the paragraph margin works for you.
.wp-block-buttons>.wp-block-button {
margin-top: 20px;
margin-bottom: 20px;
}