First and most important thing - don't ever post login and pass to your backend on a forum. This is a public forum, so you have given the data to entire world :/.
I'll try to help you as much as I can, but remember that we don't provide support to whole template makover. We can point you in some directions, but if you need more help, either take some basic html/css course to get to know with firebug/dev tools better or try find some frontend developer for help.
Also the proportion of font size to line height is made so it can be easy readable and is quite common in now days (those are main basics of designing the typography).
Yet if you still want to change the typography, please edit: /templates/gk_university/css/override.css and add at its end:
- Code: Select all
body {
font-size: 14px;
line-height: 1.6;
}
Now modify font size and line-height to your liking - above are default values. To simplify thins - second line defines line height as an multiplier of font size (14 * 1.6 will give you line height).
Remember to enable "CSS override" in template settings - advanced section.