I am looking to increase the font-size of all text on my website to 200%, you can find some test code in this Fiddle link.
If it is a PX issue, why does the code work when I add the style to "<h2>"?
<div>
<h2 class="test" style="font-size:300% !important">
hello
</h2>
<h2 class="test2">
hello
</h2>
<h2 class="test3">
hello
</h2>
Alternatively, how can I uniformly enlarge all font-sizes by the same rate?