Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

size of slide numbers reveal js

Tags:

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?

like image 271
sean read Avatar asked Mar 13 '23 11:03

sean read


1 Answers

adding

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

To the css did the trick

like image 96
sean read Avatar answered May 29 '23 02:05

sean read