Hi! I’m using the Masonry Content Element and displaying the sort options above. I’d like to restyle those, but am having trouble figuring out how.
Currently it looks like:
All / Category 1 / Category 2 / Category 3
I’d like to change two things
1. Add more space between each category, while still keeping the menu centered.
2. Remove the “/” between each category (just have larger white space between each category).
Hi festivedaisy!
Add this to your custom CSS.
.av-masonry-sort a {
margin-right: 10px !important;
}
.av-masonry-sort .text-sep {
display: none !important;
}
Best regards,
Elliott
Perfect! Thanks, Elliott!