Home › Forums › Support › Change font size for body and headings for tablet and mobile This topic has 1 reply, 2 voices, and was last updated 4 years ago by David. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts May 16, 2019 at 11:26 pm #902160 Jagoba Hi, I would like to change the font size for the complete website for body, headings and buttons when using tablet and mobile (different size for each one? Is it possible? Thanks! May 17, 2019 at 3:50 am #902381 DavidStaff Customer Support Hi there, would require CSS within media queries eg. For Tablet: @media (min-width: 769px) and (max-width: 1024px) { p { font-size: XXpx; } h1 { font-size: XXpx; } h2 { font-size: XXpx; } h3 { font-size: XXpx; } /* More styles here */ } Then to specifically target Mobile this media query: @media (max-width: 768px) { /* mobile styles here */ } Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In