i ask, possible use print icon or [print] text format page printing , print page without icon or [print] link being printed? or, need attention?
it obvious having icon print or [print] link print out on printed page unnecessay. has no function on printed page , distracts beautiful creations joomla can produce.
thank in advance.
it obvious having icon print or [print] link print out on printed page unnecessay. has no function on printed page , distracts beautiful creations joomla can produce.
thank in advance.
[mod note: moved joomla! 2.5 bug reporting 2.5 general questions]
it's not bug. can style page print using style sheet in template.
in stylesheet hide icon.
e.g. see beez 20 template:
/templates/beez_20/index.php contains:
to load /templates/beez_20/css/print.css template used printing.
maybe add print.css like:
it's not bug. can style page print using style sheet in template.
in stylesheet hide icon.
e.g. see beez 20 template:
/templates/beez_20/index.php contains:
code: select all
$doc->addstylesheet($this->baseurl.'/templates/'.$this->template.'/css/print.css', $type = 'text/css', $media = 'print');
to load /templates/beez_20/css/print.css template used printing.
maybe add print.css like:
code: select all
.actions img {
visibility:hidden;
}
Comments
Post a Comment