Two questions:
- I was updating the main hero of a home page from the classic sections to the new sections and when I added a 3-column row with a button in each, I noticed there were bullet points between the columns that I didn’t add. I was able to mark them out with the following CSS, but is there not a better way to do this? Adding bullet points between columns seems weird if it’s by default, and having no option but to add CSS to get rid of them also seems unmodern.
.x-col, .x-col .x-anchor, .x-row-inner > li {
list-style: none !important;
list-style-type: none !important;
}
- Next question is that I noticed when I added the text field, it’s centered on desktop but not centered on mobile. In fact, the text isn’t even centered to itself.

