How can I change the font size in a Minimal theme?

Hi, I would like to change the following text on these pictures:

https://gyazo.com/a4d0958936b6e8fbf8169115035900c1

https://gyazo.com/dde6d028c692f1c1d6236dcc53fdf790

https://gyazo.com/eb90c8c74164d54de146f3d127ee4d34

All the text which is black, small and an ugly font.

link to my shop:

https://thesimpleraxo.com/

Thank you.

@R0GGE

please try this code

  1. Go to Online Store->Theme->Edit code

  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

.breadcrumb {
    color: #000 !important;
    font-size: 0.90em !important;
}

grid-link__title {
    color: #000;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 1em !important;
    line-height: 1.4;
    font-weight: 700;
}

Thanks!

1 Like

thank you so so so much. Is there any way i can change the size of the price aswell?

1 Like

@R0GGE

CSS for price

.grid-link__meta {
    font-family: "Source Sans Pro",sans-serif;
    font-size: 1em !important;
    line-height: 1.5;
    color: #1a1a1a;
}

Thanks!

1 Like

@R0GGE

thanks!