Search code examples
reveal.js

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?


Solution

  • adding

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

    To the css did the trick