We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There are two cases where you might need to add double pages:
1. The pages are static images
The solution is CSS Sprites, for example:
Let's say, pages 2 and 3 are only one double page:
.p2{ background-image:url(double-page.jpg); background-position:0% 0%; }
.p3{ background-image:url(double-page.jpg); background-position:-50% 0%; }
2. Using only HTML:
The solution is even more simple, just separate the HTML in two part.