You want a print-button on the front-end of the site or in the back-end where pages are edited?
If in the front-end, this is basic HTML/CSS (or a piece of javascript) which you can add to your templates. Since you control the complete output of the HTML (umbraco spits out nothing when cleanly installed), you're the one that needs to add it to the templates. Remember to create a print-stylesheet and add it to the template as well.
/* If you're having trouble printing relative links, uncomment and customize this: (note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
@dandrayne. Nice. needed a quick fix on the stylesheet and it does the trick here. I don't have enough karma to contribute yet, but high five on this end.
Print A Page facilty
In DNN there is inbuilt facilty for print a page.
Is there anything in umbraco? if not this can be added in wishlist.
Regards,
Jigar
You want a print-button on the front-end of the site or in the back-end where pages are edited?
If in the front-end, this is basic HTML/CSS (or a piece of javascript) which you can add to your templates. Since you control the complete output of the HTML (umbraco spits out nothing when cleanly installed), you're the one that needs to add it to the templates. Remember to create a print-stylesheet and add it to the template as well.
HTH,
PeterD
<a href="#" onclick="window.print();return false">Print this page</a>
That's about it, plus a nice print stylesheet (try http://code.google.com/p/hartija/) I use the code below
@dandrayne. Nice. needed a quick fix on the stylesheet and it does the trick here. I don't have enough karma to contribute yet, but high five on this end.
is working on a reply...