• Hello, i have a problem changing the font of my website, I use css for change that,

    h1,h2,h3,h4,h5,h6,p,a {
    font-family: “Orpheus Pro”!Important;
    }

    But in the post pages don’t change, any idea?

    I cleaned the cache and the plugins and theme are updated.

    • This topic was modified 1 month, 3 weeks ago by johams.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • 4thhubbard

    (@4thhubbard)

    Hello, the theme may be overriding your kubio-system-fonts. Sometimes, themes have typography settings in the Customizer that could override your CSS. Check under?Appearance > Customize > Typography to see if any settings are affecting the font.

    Make sure that the “Orpheus Pro” font is properly loaded on your site. Verify that you’ve included the correct link or @import statement in your CSS and ensure that your CSS syntax is correct. The quotes around the font name should be straight quotes, not curly quotes.

    h1, h2, h3, h4, h5, h6, p, a {
        font-family: "Orpheus Pro", sans-serif !important;
    }

    If the font still isn’t applying, you might need to increase the specificity of your CSS rule.

    body h1, body h2, body h3, body h4, body h5, body h6, body p, body a {
        font-family: "Orpheus Pro", sans-serif !important;
    }

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.