[solved] Can't change font size of subject

Jan 16, 2012 01:30

After several weeks of pulling out my hair trying to find a layout I like, I've finally bitten the bullet and decided to code one for myself. But I've hit a bit of a snag when it comes to formatting my subject/date ( Read more... )

solved, subject

Leave a comment

Comments 3

aprilclydel_ac January 16 2012, 12:44:52 UTC

.subject {
font-weight: bold;
padding: 0px 10px 10px 10px;
color: #000000;
font-family: "Georgia", "Cambria", sans-serif
font-size: 30px;
}

.subject a, .subject a:link, .subject a:visited {
color: #000000;
font-family: "Georgia", "Cambria", sans-serif
font-size: 30px;
}You forgot to add semicolons after the font-family lines. Specifically, font-family: "Georgia", "Cambria", sans-serif;.

Reply

emmypenny January 16 2012, 16:44:19 UTC
Thank you! I figured it was something I had mis-typed somewhere, but I could not figure out where.

Reply

aprilclydel_ac January 17 2012, 10:33:18 UTC
You're welcome. :)

Reply


Leave a comment

Up