Thanks for the answer. For anyone who wants to also change the spacing it is the “line-height” parm below:
body {
-moz-font-smoothing:antialiased;
-webkit-font-smoothing:antialiased;
background:#efefef;
color:#404040;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size:14px;
font-smoothing:antialiased;
line-height:1.3em;
text-rendering:optimizeLegibility;
}
The default is 1.5em. I knocked it down to 1.3em and it looks better to me.
It took me hours to find out how to change the color of the Call To Action button from blue to red. Here is the code if anyone wants it.
.call-to-action a.button {
font-size:24px;
padding:15px 35px;
background-color:#FF0000;
background-image:-webkit-gradient(linear, left top, left bottom, from(#A50000, #FF0000), to(#A50000, #FF0000));
background-image:-webkit-linear-gradient(top, #A50000, #FF0000);
background-image:-moz-linear-gradient(top, #A50000, #FF0000);
background-image:-ms-linear-gradient(top, #A50000, #FF0000);
background-image:-o-linear-gradient(top, #A50000, #FF0000);
background-image:linear-gradient(top, #A50000, #FF0000);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#A50000, endColorstr=#FF0000);
}
Now I’m going to have to do it all over again for the new update. There must be a better way! I’ll have to learn how child-themes work!! Emil has some stuff on his site about it.