How to change body font size to 11px on Debutify Theme

How to change my base size from minimum (12px) to 11px on body text on Debutify Theme?

My store is www.revailco.com

1 Like

@Revail

sorry for that issue your have check your theme setting easy to mange if doesn’t fine 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.
body, button, input, select, textarea {font-size: 11px;}
1 Like

Thanks that works, just one other minor thing, can you tell me how to:

change the product title to 14px

and make collection list on the top left

Appreciate your help!!

bold (home, shop, collections, about section)

1 Like

@Revail

yes please add this code

.site-header .site-header__logo-link, .site-header .site-nav__link {font-weight: 600;}
h1.product-single__title { font-size: 14px; }
1 Like

hello @Revail

please Go to Online Store-> Theme->Edit code then go to assets/theme.css ->paste the below code at the bottom of the file.

.template-product  .site-header .site-header__logo-link, .site-header .site-nav__link {font-weight: 600;}
  .template-product  h1.product-single__title { font-size: 14px; }
1 Like