In the new Shadows 10.05 version, I need to limit subcategories to a max of 5 on each line. I know this has something to do with grid-template-columns on the .x-subcategory-list selector, but I can't seem to quite make it work.
I tried this:
Which is great in many cases, but if there are only two subcategories, it makes each one REALLY call, with a lot of whitespace above and below the image, with the subcategory name way down at the bottom as shown in this image.
chrome_2022-12-22_13-04-17.png
Thanks,
Susan
I tried this:
Code:
.x-subcategory-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
chrome_2022-12-22_13-04-17.png
Thanks,
Susan
Comment