View Issue Details

IDProjectCategoryView StatusLast Update
0003013SOGoWeb Calendarpublic2014-12-11 09:09
ReporterMathias Roland Assigned To 
PrioritynormalSeverityfeatureReproducibilityalways
Status newResolutionopen 
Product Version2.2.10 
Summary0003013: calendar printing: page usage
Description

When printing a calendar from sogo website, the page is not fully used. Please change the printing to use the whole page.

This should be possible to achieve when using relative line heights instead of fixed height.

TagsNo tags attached.

Activities

Christian Mack

Christian Mack

2014-12-10 15:51

developer   ~0007819

Could you provide an example?

Mathias Roland

Mathias Roland

2014-12-11 09:06

reporter  

t.html (701 bytes)   
<!DOCTYPE html>
<html>
    <head>
        <title>Hello World</title>
        <style>
            html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
                background-color: green;
            }
            #container {
                width: inherit;
                height: inherit;
                margin: 0;
                padding: 0;
                background-color: pink;
            }
            h1 {
                margin: 0;
                padding: 0;
            }
        </style>
    </head>
    <body>
        <div id="container">
            <h1>Hello World</h1>
        </div>
    </body>
</html>
t.html (701 bytes)   
Mathias Roland

Mathias Roland

2014-12-11 09:09

reporter   ~0007827

The example html file show, how to use the full page. The row height in the table you can specify also with percentage values.

Issue History

Date Modified Username Field Change
2014-12-05 13:12 Mathias Roland New Issue
2014-12-10 15:51 Christian Mack Note Added: 0007819
2014-12-11 09:06 Mathias Roland File Added: t.html
2014-12-11 09:09 Mathias Roland Note Added: 0007827