Moodle Community Sites

Printing new theme

Details

  • Type: Task Task
  • Status: Open Open
  • Priority: Minor Minor
  • Resolution: Unresolved
  • Component/s: moodle.org
  • Labels:
    None

Description

If you print pages from the new theme you are running in two problems:

_ The whole horizontal menu is printed over more than one page
_ Personal profile pictures are not printed.

Activity

Hide
Helen Foster added a comment -

Ralf, thanks for reporting this issue. Reassigning to Martin...

Show
Helen Foster added a comment - Ralf, thanks for reporting this issue. Reassigning to Martin...
Hide
Mauno Korpelainen added a comment -

<link rel="stylesheet" type="text/css" media="print" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/styles_print.css" />

should do the trick to hide menu from printed pages.

Then create styles_print.css that sets display: none on any elements that you don't want to print:

#moodlemenu {
display: none;
}

or for example some additional tags

#header, #footer, .navbar, #left-column, #right-column {
display: none;
}

  • {
    float: none;
    }
Show
Mauno Korpelainen added a comment - <link rel="stylesheet" type="text/css" media="print" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/styles_print.css" /> should do the trick to hide menu from printed pages. Then create styles_print.css that sets display: none on any elements that you don't want to print: #moodlemenu { display: none; } or for example some additional tags #header, #footer, .navbar, #left-column, #right-column { display: none; }
  • { float: none; }
Hide
Mauno Korpelainen added a comment -

Ralf,

what do you mean by "_ Personal profile pictures are not printed."?

I tried to print my profile and it worked ok - which pages do not show profile pictures when you print them?

Show
Mauno Korpelainen added a comment - Ralf, what do you mean by "_ Personal profile pictures are not printed."? I tried to print my profile and it worked ok - which pages do not show profile pictures when you print them?

People

Vote (0)
Watch (1)

Dates

  • Created:
    Updated: