I have tried increasing the header size in the html, css and the theme options in the WordPress dashboard but to no avail. Any idea why it’s not working or where else I can possibly change it? I’ll post the code from the theme here. Thanks!
HTML:
h1 { font-size:<?php echo $of_option[$prefix.'fontsize_h1']['size'] ?>; }
CSS:
h1{ font-size:25px; line-height:1em; }
Under the theme options in WordPress it says that the size for Header 1 is 35px.
My guess from this is that styles that you define in CSS are overriden by generated PHP code. I would try to do something like that although it’s hacky:
I realized that “font-size” within the header does not change the font size, in contrast to (for example) “color” within the header which actually changes the color:
However, if you put the “font-size” specification in “span” and sandwich the header within “span”, that does the trick: