Fonts

Dec 16, 2006 11:29

Couldn't find this anywhere. How can I change the font of my subject and header links/title/subtitle? Thanks!

header:nav links:font, entries:header:font, header:image

Leave a comment

Comments 3

av8rmike December 17 2006, 06:16:00 UTC
/* subject font */
.page-header2,
.post-asset .asset-name a {
font-family: (whatever);
}
/* header title/subtitle font */
#header-name a,
#header-description {
font-family: (whatever);
}
/* header links */
#header .nav .item {
font-family: (whatever);
}

Reply

unhappyending December 17 2006, 20:31:02 UTC
Thanks, but I couldn't get it to work.. do I have something wrong here? This is what I have in my Custom CSS box:

/* subject font */
.page-header2,
.post-asset .asset-name a {
font-family: (Arial);
font-size : 12pt;
}
/* header title/subtitle font */
#header-name a,
#header-description {
font-family: (Arial);
}
/* header links */
#header .nav .item {
font-family: (Arial);
}
.asset-content {
font-size: 10pt;
}
.profile-name {
display:none;
}
.asset-tags { position: relative; top: -9px;}
.asset-footer {
margin-top : 30px;
margin-bottom : 30px;
border-bottom : 1px solid #F1CFD7;
}
#header-name a,
#header-description{
color: #ffffff;
font-family: Arial;
}
#header-content-inner{
color: #ffffff;
font-family: Arial;
}

Reply

av8rmike December 18 2006, 01:31:22 UTC
Oh, sorry, I didn't think that would confuse you. The declaration for "font-family" looks like this:
font-family: Arial, Verdana, Helvetica, sans-serif;
where the declaration goes from specific to general. But the reason you might not be seeing much of a change is because the default for Expressive already is Arial. Try changing to a Times or serif font to see the difference.

Reply


Leave a comment

Up