Friday, February 20, 2004

CSS Correction

To anyone using the following css:

.PostComment{padding:20px;margin:0px;color:#444444;font-size:80%;}

It needs to be updated to have "padding" changed to "padding-left". The old method caused the top to be padded 20 pixels and therefore any links within 20 pixels of the top of something designated class="PostComment" were "covered up" and difficult to cliclick on.

.PostComment{padding-left:20px;margin:0px;color:#444444;font-size:80%;}

I'll continue to try to provide better and better CSS as people need it.