Hey Jose! Thanks for your response, I really appreciate it. Your comment inspired me to go inspect on Google Chrome. Let me preface what comes next by saying I’m not familiar with CSS but I can fiddle my way around the very basic stuff.
I came up with a code derived from Googling and pasting together different elements I came across. Here’s the code:
/* for resizing bullet points back to normal */
ul {
list-style: disc;
list-style-position: inside;
font-size: 17.5px;
font-family: Merriweather;
}
It did what I wanted to do, in resizing the font for unordered lists and changing the font to match the posts, BUT it also changed the font of my header to Merriweather as well. It seems like this was changing every font other than the post content. Is there a way to make that code only pertain to unordered lists, so that it does not affect any other element?
Sorry if this is a very basic question, and thanks again!