[–] aaronlidman 14y ago ↗ This was hard to read, I mean that about the actual readability of the article not the content. Here's my constructive criticism and simple css fixes.The paragraphs need some line-height, it seems too much like a heavy wall of text, space it out a little..entry p {line-height: 1.5em;}Black on white is hard to read for too long, something slightly less black can help..entry p {color: #222222;}Maybe it's because of the way it renders on a Mac but that font isn't the best for long text. I'd keep it simple and just stick with sans-serif..entry p {font-family: sans-serif;}before: http://i.imgur.com/JCYTF.pngafter: http://i.imgur.com/nerMb.pngjust flip between them a few times in separate tabsHope I'm not stepping on any toes, just trying to help. [–] jirinovotny 14y ago ↗ Wow, thanks a bunch! We will certainly improve the CSS as you suggested..
2 comments
[ 2.1 ms ] story [ 16.7 ms ] threadThe paragraphs need some line-height, it seems too much like a heavy wall of text, space it out a little.
.entry p {line-height: 1.5em;}
Black on white is hard to read for too long, something slightly less black can help.
.entry p {color: #222222;}
Maybe it's because of the way it renders on a Mac but that font isn't the best for long text. I'd keep it simple and just stick with sans-serif.
.entry p {font-family: sans-serif;}
before: http://i.imgur.com/JCYTF.png
after: http://i.imgur.com/nerMb.png
just flip between them a few times in separate tabs
Hope I'm not stepping on any toes, just trying to help.