Since there doesn't seem to be an "Evening Sun support" catagory yet, I'm posting this in "Feedback".
I'm currently using the Evening Sun theme on my personal site; just-thinkin.net . The theme is definitely high quality and beautiful to say the least but one rather glaring problem stood out. There was no white space between paragraphs in either comments or the sidebar (IE: text widgets).
If someone made a comment or I added a text widget using just html text and this text was separated into two paragraphs, both paragraphs were rendered as one single paragraph. This took away from the over all looks of the theme itself.
So I added the following to the "typography.css" file:
p {
margin: 10px 0; padding: 2px;
}
#content p {
margin: 5px 0 10px; padding: 0;
}
#sidebar p {
margin: 5px 0; padding: 0;
}
This takes care of the problem nicely. Just wanted you folks to know.
By the way, I'm assuming all such modifications should go into the "typography.css" file rather than the "style.css" file. If otherwise, please let me know.