Brett O'Donnell wrote:
I'm sure it's a simple change in the skin, but I don't know what to change to reduce the line spacing.
In main.css, look for:
#content { background: white; color: black; border: 1px solid #aaa; border-right: none; line-height: 1.5em; }
Change line-height to something else. If you don't know CSS, an em is a wide space for a font. So the line height shown is one and a half times the widest character (IIRC). You could just use a number without em and it should choose the height to be that number times the font height rather than the font width.
Mike