How do I keep the same body font for my bulleted text? The font changes everytime I insert a bullet point or a numerical list in my posts. See below example,
Thanks!
How do I keep the same body font for my bulleted text? The font changes everytime I insert a bullet point or a numerical list in my posts. See below example,
Thanks!
Hello Candace,
Thanks for writing in!
You are having this issue because in Appearance > Customize > Additional CSS, you have added this:
header.masthead {
position: absolute;
width:100%;
}
.x-navbar {
background-color: transparent !important;
box-shadow: none !important;
border-bottom: none !important;
}
.blog .entry-title, .archive .entry-title, .single .entry-title {
font-size: 32px !important;
}
.single .entry-title {
font-weight: bold !important;
}
ul li {
font-size: 20px;
}
ul li {
font-family: "Esteban", Esteban, sans serif;
}
Please remove this css block from the code above:
ul li {
font-size: 20px;
}
ul li {
font-family: "Esteban", Esteban, sans serif;
}
so that you will have the correct font for your list items.
If you need anything else we can help you with, don’t hesitate to open another thread.
Thank you so much! That fixed it.
You’re welcome!
It’s good to know that it has worked for you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.