How can I adjust the font size in my collection site?

Need help change font size in collection

site: https://metpure.myshopify.com/

pw: peeffe

theme: Minimog-2.5.0

Any help is appreciated.

Hi @rwyang ,

  1. Go to Admin > Online store > Themes > Actions > Edit code
  2. Go to Asset folder, and open the theme.css file
  3. Add the code below.
[id$="16225316461d1cff80"] .collection-card__info h3 a {
    font-size: 15px !important;
}
2 Likes

Please add below css code in bottom of assets/theme.css file

.collection-card__info h3 a {
font-size: 18px;
line-height: 28px;

}
Thank you.