Template Help

Since I switched to Firefox there have been a couple of weird glitches, one is for some reason it appears that the font size has shrunk. I am not sure why, but I am working on it.

If you are proficient at coding and want to offer your help it will be gratefully accepted. In the interim I need to eat breakfast.

(Visited 43 times, 1 visits today)

2 Comments

  1. Jack's Shack November 27, 2004 at 10:02 pm

    Thank you, thank you.

  2. ricknight November 27, 2004 at 7:22 pm

    Display fonts for posts are controlled in the section that starts with the following;

    /* Posts
    ———————————————– */

    You can specify font type, weight, and size to be a specific value. Anything not set gets the browser defaults..

    For example;

    .post {
    margin:.5em 0 1.5em;
    border-bottom:1px dotted #ccc;
    padding-bottom:1.5em;
    }

    You could change is to;

    .post {
    margin:.5em 0 1.5em;
    border-bottom:1px dotted #ccc;
    padding-bottom:1.5em;
    font-size:110%;
    font-weight:normal;
    }

    this would increase the font size slightly. You could also specify in pts values 12pts, 14pts, etc.

    This is an embedded CSS (Cascading Style Sheet). You can google that and find out lots of pedantic info about altering the look and feel using fonts only.

    Cheers
    Ric

Leave a comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

You may also like