Hi There, I've been able to adjust the font and spacing for my category list, however, I'm unable to get the list to be justified to the center of the content box? No matter what I put in for code, it stays justified to the left. I must be missing something basic here? Any help would be great.
I've tried a few different versions of this:
/* Tag cloud text align */
ul.sqs-tagcloud * {
Text-align {
text-align: center !important;
}
Nothing changes. The only way I was able to get it centered is by using this (which I don't want):
/* Tag cloud text align */
ul.sqs-tagcloud * {
display: flex !important;
align-content: space-between !important;
flex-wrap: wrap !important;
justify-content: center !important;
flex-direction: row !important;
}
This seems to create a flex box for each category - not ideal.
I've attached a couple screen shots - one showing the tag-cloud content box not using the flex box code, one with. And to be clear, it's the screenshot with the horizontal list I'm wanting, but justified centered, not left. I'm assuming I shouldn't use a flex box, but was just trying different options to make this work.
Any ideas here?
Thanks so much!