Hi. I previously changed my overall font to a Google Font and added the custom CSS to do so. This worked fine. However, now I need to make the overall font of everything in the site, including the blog and shop pages to be a size 14. Can you give me the custom code to make this happen? I currently have the following custom CSS: body, a, p, h1, h2, h3, h4, h5, h6 { color: #4E004C !important; } and body, a, p, h1, h2, h3, h4, h5, h6 { font-family: 'Raleway', sans-serif; } ul#menu-footer-menu li a { font-family: 'Raleway', sans-serif !important; } ul.product_list_widget span, ul.product_list_widget li a { font-family: 'Raleway', sans-serif !important; }
Hello, V4sb! You can use the CSS code given below. Code: body, div, ul, li, span, a, p, h1,h2, h3, h4, h5, h6 { font-size: 14px !important; } But, I will recommend you not to make such changes because it could mess up the whole page and also make your website looks weired. Thanks, Praveen