• Resolved Antranik

    (@antranik)


    What determines the font inside of all widgets contents? I am using Google Fonts plugin, you could check it out at https://www.antranik.org and you can see that the widgets are reverting to the Times font. Any guidance on this matter would be great, thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Have you tried using Firefox Firebug, or Chrome Developer Tools, to identify what style declarations are being applied?

    The font is coming from this file:
    https://antranik.org/wp-content/themes/arras/user.css

    And this declaration:

    body {
        color: #333333;
        font: 12px Times,Verdana,Calibri,Tahoma,Arial,'Serif Sans-serif'; }

    Note: you have HTML comment tags around this declaration:

    <!-- body {} -->

    If you want to comment-out this declaration, use CSS comment tags:

    /* body {} */

    Thread Starter Antranik

    (@antranik)

    Thank you so much Chip!

    Glad to help!

    (p.s. be sure to mark the topic as “Resolved”, to help others find the solution should they have a similar problem.)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Font of Widget Content?’ is closed to new replies.