Line spacing issues with Plain Yogurt

Permalink
I'm in the early stages of putting my first concrete5 website together, and I'm starting with the Plain Yogurt theme and building up from there, but I'm having a hell of a time figuring out how to stop all the text from being double-spaced everywhere. Can anybody help point me in the direction of how to stop having these humongous gaps between lines? Most specifically, my issue is with my calendar page, so below there's a link to that work in progress. I edited the calendar script to stop truncating the event titles after 12 characters, but some of the longer event titles now word wrap onto a second line, and in instances where those longer titles share a date with other events, it makes the calendar quite difficult to read. If I could delete the spacing between the words that are part of the same title and then just put a line break between titles, I believe it would read much more clearly.

http://www.redcapscorner.com/concrete/index.php/calendar/...

 
ThemeGoodness replied on at Permalink Best Answer Reply
ThemeGoodness
Hi and welcome.

The line height is effecting this found in the typography.css
body {
font: normal normal 13px Arial;
color: #777;
line-height: 18px;
}

So even though you have changed the point size on the specific calendar items the line height needs to be adjust too.

Steph