• Resolved bluetulisa

    (@bluetulisa)


    Hello

    I would like to ask a question on the fonts.

    I have managed to change the font of the articles on the website using the ‘Typography’ tool.

    How do I change the fonts used in the theme? Such as the fonts used for the widgets, and the menu words? Trying to change it on the ‘Theme Fonts’ does not work.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You will have to adress this in CSS and not use plugins, they will “Clumper” yuor site!

    Under appearence > Custumize > Additionel CSS
    You could add thiswith your own choise off font

    
    body {
    font-family: "Ubuntu", Helvetica, Arial, sans-serif;
    }
    

    The rest in the Iconic theme will inherit the font, set in the body tag …

    You can also adress them one by one, like this:

    h1 {
        font-family: times;
    }

    Or more at one time:

    h1, h2, h3, body {
        font-family: times;
    }
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Font’ is closed to new replies.