Hi
I'm printing a directory that mostly has mostly two columns. The entire document is enclosed by a <div>:
The last section consists of eight maps that are full-page images. I've been trying to print them by enclosing the maps in a <div> specifying one column thus:
The maps pages are still rendered in two-column format, so only half of them are seen. Is thee any way to turn off two-column formatting temporarily, or even permanently, since the maps section is the last in the directory?
Thanks.
I'm printing a directory that mostly has mostly two columns. The entire document is enclosed by a <div>:
div.chapter {
columns: 2;
column-fill: balance;
page: serial;
column-gap: 1em;
column-rule: thin solid black;
}
The last section consists of eight maps that are full-page images. I've been trying to print them by enclosing the maps in a <div> specifying one column thus:
...
<div class='chapter'>
...
main part of the directory
...
<div style='columns:1;'>
...
maps
...
</div>
</div>
...
The maps pages are still rendered in two-column format, so only half of them are seen. Is thee any way to turn off two-column formatting temporarily, or even permanently, since the maps section is the last in the directory?
Thanks.