Remove white margin on presentations
There's a white margin added to all presentations by default, it would be great if you could remove it or make it optional so a presentation can look like fullscreen.

-
Simon Bérubé commented
The following is another option, especially if you want to run some JavaScript. Slides.com strips JavaScript, but if you can add it to slide HTML, wrapped in <code> tags, you can export the presentation HTML and change code> to script>.
<code>
if (window.addEventListener) // W3C standard
{
window.addEventListener('load', customScript, false);
}
else if (window.attachEvent) // Microsoft
{
window.attachEvent('onload', customScript);
}
function customScript() {Reveal.configure({
margin: 0
});}
</code>
-
Simon Bérubé commented
This should be easy for them to implement, as reveal.js already has a margin parameter.
I was hoping for this as well. I found a way to adjust the margin from the exported HTML. Export the HTML, and in the search it for margin: 0.05 (change that to 0).