Paul
Paul

Reputation: 338

How can I change the default font color on ioslides across all slides?

I did manage to change the font color locally using <font color="orange">text</font> and the font color of citations using span.cite {color:blue;}.

But I can't figure out how to change the default font color. Right now it's gray and I want it black.

Thank you!

Paul

Upvotes: 3

Views: 1978

Answers (1)

scoa
scoa

Reputation: 19867

You could add at the top of your document:

<style type="text/css">
body p {
  color: #000000;
}
</style>

Upvotes: 4

Related Questions