thedarkman wrote:
> I know I've asked this before and I don't want lectures, just a little
> bit of practical help.
>
> Of all the files on my websites I only really have trouble with one,
> this
>
> http://www.infotextmanuscripts.org/limericks.html
You would be a long way towards making the page more readable if you
would drop the <center>. Limericks are normally displayed thusly:
A computer, to print out a fact,
Will divide, multiply, and subtract.
...But this output can be
...No more than debris,
If the input was short of exact.
where the dots indicate spacing. Add about 15% padding to the left to
keep the content away from the browser viewport border.
The colors are less of a problem than the ability to read easily.
Try this:
<h2>A Nameless Computer Limerick</h2>
<pre class='limerick'>
A computer, to print out a fact,
Will divide, multiply, and subtract.
But this output can be
No more than debris,
If the input was short of exact.
</pre>
Use CSS something like this:
body { font-size: 100%; margin-left: 15%; }
h2 { font-size: 140%; background: transparent; color: red; }
..limerick { font-family: Georgia, serif; }
If you only use <pre> for limericks, you can just style the pre element
itself, and not bother with the .limerick class.
Oh, and bold content text is also hard to read. I notice just about all
of your pages are very large bold text. I need to ask: do you have a
vision problem? Most of your visitors will not, so use standard size text
and adjust your own browsers for larger, if you need it. Don't make me
suffer, though.
Is that a lecture?
--
-bts
-This space for rent, but the price is high