• Resolved Mshaw

    (@cuucwordpress)


    For some reason, the page titles and menu fonts changed on our site. Is there a way to change them back?

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Hi,

    Yes it may be from added plugins. To override and revert back to original font. Add following css code in additional css section in customizer.

    .primary-navigation {
        font-family: inherit!important;
        }
     h1, h2, h3, h4, h5, h6 {
     	font-family: inherit!important;
     }

    Thanks!

    Thread Starter Mshaw

    (@cuucwordpress)

    Hi,
    Thank you for your reply. I added that code to the Customizing Additional CSS section, however, the menu and title fonts are still italic in addition the site title font is still a sans serif italic font. Is there any additional code I need to add to fix that?

    Thanks again for your help!

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Hi,

    In this theme you can use two google font Playfair Display and Open Sans.

    To user open sans use following code

     .primary-navigation {
        font-family: inherit!important;
        font-style: normal;
        }
     h1, h2, h3, h4, h5, h6 {
     	font-family: inherit!important;
     	font-style: normal;
     }
    
    For Playfair Display user following code
    
    <code></code>.primary-navigation {
        font-family: 'Playfair Display'!important;
        }
     h1, h2, h3, h4, h5, h6 {
     	font-family: 'Playfair Display'!important;
     }
    
    Thread Starter Mshaw

    (@cuucwordpress)

    Hi,
    Thank you so much! That fixed the menu and title fonts. The main site title still looks like it’s the Playfair Display font though.

    https://columbineuuchurch.org

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Hello cuucwordpress,

    For site title you amy add the folllowing css;

    .site-title {
        font-family: inherit;
        font-style: normal;
    }

    Let us know.
    Thanks!

    Thread Starter Mshaw

    (@cuucwordpress)

    Great, thank you very much. That fixed it!

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Good to hear that cuucwordpress!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Title and menu fonts changed unexpectedly’ is closed to new replies.