• How do I change the font to Helvetica in Stargazer? I tried this, but it did not work:

    @font-face {
    font-family: ‘Helvetica’; ‘Genericons’;
    font-weight: normal;
    font-style: normal;

    src: url(‘fonts/genericons/genericons-regular-webfont.eot’);
    src: url(‘fonts/genericons/genericons-regular-webfont.eot?#iefix’) format(’embedded-opentype’),
    url(‘fonts/genericons/genericons-regular-webfont.woff’) format(‘woff’),
    url(‘fonts/genericons/genericons-regular-webfont.ttf’) format(‘truetype’),
    url(‘fonts/genericons/genericons-regular-webfont.svg#genericonsregular’) format(‘svg’);
    }

Viewing 6 replies - 1 through 6 (of 6 total)
  • @alisonpaul

    Perhaps it’s not working because there is a semi-colon after Helvetica. It should be a comma after Helvetica, not a semi-colon:

    @font-face {
    font-family: 'Helvetica', 'Genericons';

    Oh wait! Also, you seem to be changing the font in the icons, not on the body text itself. A link to your site would be helpful ??

    Thread Starter alisonpaul

    (@alisonpaul)

    Thanks so much for responding! My site is p3georgia.org.

    On your CSS file, look for:

    .font-primary, body, input, textarea, .label-checkbox, .label-radio, .required, #site-description, #reply-title small {
    font-family: 'Droid Serif',Lora,Georgia,serif;
    }

    and replace it with:

    .font-primary, body, input, textarea, .label-checkbox, .label-radio, .required, #site-description, #reply-title small {
    font-family: 'Helvetica',sans-serif;
    }
    Thread Starter alisonpaul

    (@alisonpaul)

    Will do – thank you again so much for the help.

    Thread Starter alisonpaul

    (@alisonpaul)

    It worked!!!! Thank you!!!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change font’ is closed to new replies.