I’m wondering, why there is no simple way to set the body font size in the Enfold Theme Option…
when I add this css code to the quick CSS field in the enfold theme option
body {font: 15px/1.5em; text-align:justify;}
h1 { font-size: 26px; line-height: 1.5em; margin-bottom: 14px;}
h2 {font-size: 24px; line-height: 1.5em; margin-bottom: 10px; }
h3 {font-size: 22px; line-height: 1.5em; margin-bottom: 8px; } /*28*/
h4 {font-size: 20px; line-height: 1.5em; margin-bottom: 4px; } /*21*/
h5 {font-size: 18px; line-height: 1.5em; } /*17*/
h6 {font-size: 16px; line-height: 1.5em; }
Enfold only activates the alignment justify…
also when added directly to the custom.css the body font size will not be changed…
only when changing the body font size in the base.css, than you get the changes as wished.
the problem: on each Enfold update the base.css is overrided…
any workaround to get this working?
thanks
IGor
/* CHANGE BODY TEXT SIZE */
body p, body {
font-size: 15px;
}
i will guess you see that change soon
thanks a lot… did worked perfectly with this code