I am having trouble coding the buttons on the website page builder. The goal is to have the wording centered. Any tips or help would be great!
Hi @Clanahan,
At the most basic level here is the CSS you’d apply. If there are only specific buttons you would be doing this for you can apply a class as well, but if you want all buttons on the site to have the same effect this should help.
.button {
text-align: center;
vertical-align: middle;
}
If you’ve already done this and it still isn’t working, there is likely something else in your CSS that is causing it to revert. You’d have to do a bit more digging to find that, but hopefully this gets you pointed in the right direction.
Josh
