I wanted to change my fonts a little...so I dug around the template and unearthed this. To get the blog title to not be all upper-case I had to edit this:
#blog-title {
margin:5px 5px 0;
padding:20px 20px .25em;
border:1px solid #eee;
border-width:1px 1px 0;
font-size:200%;
line-height:1.2em;
font-weight:normal;
color:#666;
text-transform:uppercase;
letter-spacing:.2em;
}
I removed 'text-transform:uppercase;'. That allowed BlogU to look like it does. After that I wanted to change the description font. I found this to do that:
#description {
margin:0 5px 5px;
padding:0 20px 20px;
border:1px solid #eee;
border-width:0 1px 1px;
max-width:700px;
font:78%/1.4em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;
text-transform:uppercase;
letter-spacing:.2em;
color:#999;
}
I changed the color and by removing 'color:#999;''and in it's place put:
color:#c60;
font-style:italic;
font-weight:bold;
}
If you need some more options on changing the fonts you can go to
w3schools and
Lissa Explains it All.
No comments:
Post a Comment