Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #296163

    Hello,

    How do I get a bulleted list I inserted to have the same format and font as the rest of my website? Right now the list has a different font style, size, and the line spacing is different between items than the rest of the page.

    #296373

    Hi guys,

    Any way to change the font for bulleted lists?

    #296391

    Hi!

    Your css to change the font targets *only* paragraph tags so that is all that gets changed. Instead you can target content wrapper so everything inside of it gets that default font:

    
    .entry-content-wrapper {
        font-family: 'Josefin Slab';
    }
    

    Or for sitewide:

    
    body {
        font-family: 'Josefin Slab';
    }
    

    Cheers!
    Devin

    #296461

    Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Bulleted list has a different font and format’ is closed to new replies.