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.
Hi guys,
Any way to change the font for bulleted lists?
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
Thanks!