Hi there,
Thanks for the live examples, that helps a ton. The problem is that the site builder is using a function called wp_autop()
for these blocks, and that is having the effect of adding <p>
elements around every element within our form which makes our styles not work properly.
I believe this will work for you as a workaround, but you might want to additionally target this only on the homepage or whatever pages that footer will appear on since I’m not 100% certain how this will affect other Give forms on your site:
.give-display-button-only form ul#give-donation-level-radio-list + p {
display: inline-block !important;
}
You might also reach out to your theme author to see if they have a way to disable wp_autop()
in specific blocks of their builder, not just globally.
Thanks!