• SlackeR

    (@slacker)


    Where do I edit the font size for the sidebar for the default them of WP1.5. Which part of style.css? Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hannah S.L.

    (@fernashes)

    Automattic Happiness Engineer

    You need the very first option in the style.css:

    \
    body {
    font-size: 62.5%; /* Resets 1em to 10px */
    font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
    background-color: #d5d6d7;
    color: #333;
    text-align: center;
    }
    \

    If you want, you can change the font size to px instead of %, for example: 10px.

    My advice: play around with it. You’ll learn the most. ??

    Thread Starter SlackeR

    (@slacker)

    Would that change the font size for the whole website itself.. I just want to change the font size on the side bar..

    Hannah S.L.

    (@fernashes)

    Automattic Happiness Engineer

    What you need to do is take a good look at the code on the sidebar. Are there any tags which have <…. class=”….”> in them? If yes, then you need to change the thing in your styles.css that has the name of the class, for example: class=”test”. If no, then you can just change the body.

    Everything else gets into more complex CSS. If you want to learn that, there are enough websites. I think it’s a little bit much to be explaining here, but I could be wrong.

    Thread Starter SlackeR

    (@slacker)

    I think I found the line.. Tried editing

    #sidebar {
    font-size: 1.5em;
    font: 1em ‘Trebuchet MS’, Verdana, Arial, Sans-Serif;
    }

    and it changed the size of the fonts on the sidebar

    Thread Starter SlackeR

    (@slacker)

    Yup that works ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Font Size For WP1.5 Default Theme’ is closed to new replies.