Love Kriesi’s work, but his typography is always too small, crowded, difficult to read. And he doesn’t offer anywhere to change it in the style settings. Fortunately, there is CSS, but I’m having trouble doing this seemingly simple thing.
I want to make the body text larger throughout enfold. I tried this in Quick CSS but it gets overridden.
body {
font: 14px/1.65em “HelveticaNeue”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
color: #444;
}
I also tried font-size:15px
That had no affect either. I also tried adding !important to both of them to no avail.
Figured it out:
body { font-size: 15px!important; }
it does work. Sorry!