I'm trying to change the font of the header, and also the Mission Statement. To start with the header, I went to themes/marinelli/alagna to the typography.css file. This is the line I thought I was supposed to edit:

#header h1, #header p.sitetitle { /* site title */
font-family:"trebuchet MS", Times New Roman;
font-size: 4em;
font-weight: lighter;
letter-spacing: -1px;
text-transform: none;
}

So, I deleted the # and changed the "trebuchet MS" to "Georgia", but the font simply became smaller. If I change it to Times New Roman, nothing happens. Can someone with CSS knowledge tell me what I'm doing wrong?

How do I change the Mission Statement font?

Thanks in advance!

Comments

shruti.sheth’s picture

Hello,
I tried to change the font for header and site slogan and was successful, I hope my answer is helpful to you. Just change the font-family name to any font of your choice in the code below in your
themes/marinelli/alagna/typography.css

#header h1, #header p.sitetitle {
font-family:"trebuchet MS",verdana;
font-size:4em;
font-weight:lighter;
letter-spacing:-1px;
text-transform:none;
}

for e.g. if you want the font as Times New Roman, then change font-family:"trebuchet MS",verdana; to
font-family:Times New Roman; in the above code.

Thanks.
Shruti

oadaeh’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

This issue is being closed because it is against a branch for a version of Drupal that is no longer supported.
If you feel that this issue is still valid, feel free to re-open and update it (and any possible patch) to work with the 7.x-4.x branch.
Thank you.