Usability/Usability humor
[4:52:59 PM]
CSS tip: Make your blog easier to read! The single best thing you can do with stylesheets is to add a little extra space between your lines of text.
The simplest approach: put a <div> with the style information around the content part of your template. Radio inserts the body of the page at the <%bodytext%> macro. So adding this to your Radio template (Click on Preferences, then Main template) would look something like:
<div style='line-height: 1.5'>
<p><%bodytext%></p>
</div>
What number should you use for the line-height? 1.5 is good for rather long lines. 1.2 is good for rather short lines.
This works in new browsers that support stylesheets. Browsers that don't know about stylesheets will just ignore it. Stylesheets are something of a problem for Netscape 4, but line-height works pretty well (as long as you use a relative measure like '1.5').
© Copyright 2002 john robert boynton.
Last update: 9/27/02; 6:36:10 PM.