I’d like to align my content to the right and remove checkboxes, is this possible?
I can’t seam to find the right css code to text-align: right; nor remove the space inbetween each filter…
Cheers in advance!
Hi @larsvilhelmsson ,
May I suggest to update code these steps:
body .facet-checkbox > svg {
display: none;
}
body .facets__item {
margin: 0;
}
body .facets-vertical .facets__summary {
padding: 0;
}
body .facet-checkbox {
padding: 0.5rem 0;
justify-content: flex-end;
}
body .facets-wrap-vertical {
padding: 0;
}
body .facets-vertical .active-facets-vertical-filter {
justify-content: flex-end;
}