How do I change my font?

I want to change my font to sans serif, my font size to 18 and my color to black (like, actual black)

I tried using some of the code you provided in your other answers, but it didn’t work.

Any suggestions?

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*change font*/
*{
  font-family: Sans-Serif;
}
/*change font size and color*/
p{
  font-size:18px;
  color:black;
}

Best Regards,
Support

Alright, thanks!

Another problem that I have is that I use “bullet points” on my website, a lot
“unordered” html list, ordered html list etc.

How can I change my bullets points and headlines to the font, size and color that I want them to be?

Cheers!

Hey there,
Thank you for keeping in touch

Please send me the URL to to page you’re having this issue, so I can look into a solution for you.

Best Regards,
Support

Here’s an example.

Notice my list over that page, the font (size, color and type) are all wrong

Please do this using following custom CSS code.

.entry-content li {
    font-size: 16px;
    color: #000;
}

For some reason, I can’t see the “Additional CSS” option in my theme.

Could it be due to your new update? It was there the last time I checked.

It is displaying fine on my test site using latest version of theme.

This can be due to plugin conflict on your site.

Please also try clearing cache on your site.

Alternatively you can use this plugin to use Custom CSS on your site Simple Custom CSS – WordPress plugin | WordPress.org

Hi,
I have the same problem.
How can I change my bullets points to the font, Josefin, Sans what I want?

Hello there,

I hope you are doing well today.

You can use the following CSS to change the font famiy.

/*Font Family for list items*/
.entry-content li {
    font-family: Josefin, Sans;
}

Best Regards,
Support