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,
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,
can you please check your theme customization font option its allow though change font size whole site
@YNN , do this to fix it in 20 seconds:
.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!!!