I want to set a header and footer in my presentation. I used the following issue as a starting point: https://github.com/hakimel/reveal.js/issues/806 and http://www.ciges.net/re
Insert the header/footer elements into the div.reveal
element instead of the .slides
slides element.
The position within the DOM tree you where insert the header/footer elements affects which CSS is applied, which in turn affects their positioning.
$('.slides').prepend(header)
adds the elements inside the slides
slides
$('div.reveal').append(header)
adds the elements inside the reveal
reveal
Note this does not work for the print/pdf version... I'm still trying to figure that one out...