This is a thread for stylistic suggestions if anyone wants to talk about it...
Was playing with fonts on HEM's post about Self earlier, because I felt that maybe the font could be darker, sharper, and spaced better for maximum journalistic feel...
Here's what I thought looked better... To test this in Chrome, right click on a paragraph (you could right click right here on this text if you want to), then click inspect element, then on the Styles tab to the right, you'll see element.style { } at the top of the list. Click inside the curly braces and paste this:
font-family: 'Helvetica Neue', Arial, sans-serif;
font-size: 14px;
color: black;
line-height: 150%;
So you have this:
element.style {
font-family: 'Helvetica Neue', Arial, sans-serif;
font-size: 14px;
color: black;
line-height: 150%;
}
Your paragraph will now have the new styles applied and you can see what it looks like.