Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jtg

    (@favdes)

    Hi everyone,

    Has anyone got any idea on how I can fix this?

    Kind regards

    James

    You need to change this section’s font from Arial to Lato. To do that, find this block of code in your CSS:

    footer.entry-meta {
    margin-top: 24px;
    margin-top: 1.714285714rem;
    font-family: "Arial", Helvetica, sans-serif;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
    text-align: left;
    color: #757575;
    }

    Change it to:

    footer.entry-meta {
    margin-top: 24px;
    margin-top: 1.714285714rem;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
    text-align: left;
    color: #757575;
    }
    Thread Starter jtg

    (@favdes)

    Hi Jan,

    Thanks for your help. We just managed to figure it out. We had to add the line font-family: "Arial", Helvetica, sans-serif; to the main.css and style.css in the template folder.

    Thank you for getting back to me though. It was a tricky one to track down!

    Kind regards

    James

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Blog Font Change’ is closed to new replies.