Armadillo Tags Not Wrapping

Has anyone had the problem of Armadillo tags not wrapping and falling off the page?
Screen Shot 2020-08-09 at 4.11.55 PM
Website is thatcollegelife.com
I tried some css I found in the forum but it didn’t work. @teefers
#armadilloBlogNav {
display: flex;
flex-direction: column;
}

Give this a try:

If you want column view (I entry per line):

.blog-tag-cloud {
    display: flex;
     flex-direction: column;
}

If you want it to “wrap” around when the line is full:

.blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
 }
1 Like

That seems to have done the trick! Doug, I can’t thank you enough.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.