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. 🙂
Would that change the font size for the whole website itself.. I just want to change the font size on the side bar..
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.
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