sean read
sean read

Reputation: 305

size of slide numbers reveal js

I've added slide numbers to my reveal js presentation with

        Reveal.configure({ slideNumber: true });
        Reveal.configure({ slideNumber: 'c/t' });

But the slide numbers are very small. I'm not familiar with javascript. Can someone please tell me how to make them bigger?

Upvotes: 4

Views: 2018

Answers (1)

sean read
sean read

Reputation: 305

adding

.reveal .slide-number {
  font-size: 24pt;
  color: #ffffff; }

To the css did the trick

Upvotes: 8

Related Questions