Font Issues

Hi,

I have the typography set to helvetica in the theme options and on a mac the font shows up in a san serif font but when i view it in the same browser on a pc the font is a horrible serif font. the site is www.qubecharity.co.uk/auction-listings

I attempted to add the following code in the custom css section to override it but nothing changed:

p.sansserif {
    font-family: Arial, Helvetica, sans-serif;
}

thanks

alex

You are now using Helvetica Neue but you can change it to any font by using code like this via Theme Options - Other - Custom CSS.

.entry-content {
    font-family: Arial, Helvetica, sans-serif;
}

Or you can stick with your method but remove this extra class .sansserif.

p {
    font-family: Arial, Helvetica, sans-serif;
}