Reputation: 371
On reveal.js can't find how to make the width of the content of the presentation wider. Tried editing reveal.css and the other styles but it appears the bounding box of all elements does not fill all the screen.
Whats the CSS property for this?
Upvotes: 0
Views: 65
Reputation: 390
You can change the width inside the file reveal.js
. Just find Reveal.initialize
and add the size you want. Example:
Reveal.initialize({
width: 900,
height: 700
});
Upvotes: 1