Hello, I am trying to modify collection list names on front page, to make them smaller, I cannot do it from Spotlight theme settings, and I need to change the code, does anyone have any clue how to make it smaller,
The site is www.saboco.ro and I attached the picture, on frontpage, I would like the collection names from collection list to be smaller.
Thank you
Please add this code to your theme.liquid file, after element in Online Store > Themes > Edit code.
You can find the best value by trying the 1.1rem value. For example: 1.2rem, 1.3rem
@PCCPitesti
you can place the below code into your theme files
Online theme > Edit code > base.css file and place it at the bottom
.section-collection-list .collection-list__item .card__heading a {
font-size: 13px !important;
}
Result:
Thanks