How can I reduce the font size in my website's disclaimer?

Hello,

I would like the size of the font to be much smaller, URL yellowstonenaturalnutrition.com.

I have been unable to change the size of the font to be the same overall size as the text box to the left of it.

Thank you,

@YNN

can you please check your theme customization font option its allow though change font size whole site

Hello Ketan,

I am stuck here unable to adjust the font size. Please advise.

Thank you,

@YNN , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.site-footer__item:nth-child(3) .site-footer__rte{
    font-size: 14px !important;
}

@media (max-width: 767px){
    .site-footer__item:nth-child(3) .site-footer__rte{
    font-size: 12px !important;
        
    }
}

You can change the values as per your wish:

14px = desktop font size
12px = mobile font size

Kind regards,
Diego

Thank you!!!