• Resolved spanspek

    (@spanspek)


    Hello there

    I would like to change the Font used on the size, I want to use the font-family: Arial, Helvetica, sans-serif;.
    How can I incorporate that?

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there spanspek,

    Hope you’re well today ??

    This should be possible with custom CSS. What exactly are you looking to change and to which size?

    Can you also post link to your site so I can take a look?

    Cheers,
    Bojan

    Theme Author Tim Nicholson

    (@timnicholson)

    I would change it with a site-wide CSS plugin, such as comes with the Jetpack plugin. It’s easy to do with CSS.

    My code is like this:

    body {
    	font-family: Arial, Helvetica, sans-serif;
        font-weight: 300;
        font-size: 18px;
        color: #555;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    	font-family: Arial, Helvetica, sans-serif;
    }

    It sounds like you want this:

    body {
    	font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
        font-weight: 300;
        font-size: 18px;
        color: #555;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    	font-family: "Raleway", Arial, "Helvetica Neue", sans-serif;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CHange Font Family (Size & co. included)’ is closed to new replies.