• Resolved JaFoste2

    (@jafoste2)


    Hi guys.

    I would like to change the default font weight of the theme from 300 (light) to 400 (regular). Can someone explain me how to do it?

    Thanky you so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi JaFoste2. This is from the theme default style.css:

    body { background: #eaeaea; font-size: 16px; line-height: 1.5em; color: #666; font-weight: 300; }

    You could enter this in a child theme style css, or a plugin like Simple Custom CSS to override the default:

    body { font-weight: 400; }

    Here’s an article on font-weight you might find informative. Hope that helps.

    Thread Starter JaFoste2

    (@jafoste2)

    Thank you, bdbrown.

    I tried it manually but it didn’t work for me. Then I used the plugin, and it worked!

    Thank you so much for the help.

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

The topic ‘Change default font weight’ is closed to new replies.