I am currently working on the following site http://testsite.bcsynergies.com/
The issue I am running into is that we need to increase the overall font size of each element. (I.E. Header, Menu, paragraphs, etc.)
Is there a way to do this individually? Is there also a way to do this as a whole?
Thank you
Hi DoGrinDigital!
To do it individually you’d need to use the Dev Tools to identify the elements you want to modify and apply the right code in the Quick CSS, see this video for a reference:
http://wptheming.com/2012/07/chrome-developer-tools-wordpress/
To do it globally, simply put this in the Quick CSS:
* {
font-size: 20px !important
}
Cheers!
Josue