![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
For each page of a website there is another page, which is used for print purposes. It's content is basically the same: the markup is slightly different, some images are removed, the navigation is completely removed. When viewing the page as "text-only", maybe 90% of the text is identical. |
#3
| |||
| |||
|
|
Welcome to the Web, which can work media-independent. Just use HTML with CSS, and separate media screen, projection etc from media print. Then whenever the user wants to print out the current page she just hits the print button. Navigation will not be seen on the paper. |
#4
| |||
| |||
|
|
"Philipp Lenssen" <info (AT) outer-court (DOT) com> schrieb im Newsbeitrag news:2pqt2nFokcilU2 (AT) uni-berlin (DOT) de... Welcome to the Web, which can work media-independent. Just use HTML with CSS, and separate media screen, projection etc from media print. Then whenever the user wants to print out the current page she just hits the print button. Navigation will not be seen on the paper. This answer is not quite what I was looking for, but thank's a lot anyway. The website is created from XML input. Creating two slightly different HTML pages is no problem at all |
|
An anchor tag should not be visible on the print page. The user should not be able to have the print page and click on a link. Instead... a href="bla">caption</a should be replaced with something like... caption --> bla |
#5
| |||
| |||
|
|
Such as people not respecting what you intend your page for, and linking to the Print-version on the web (I've seen this before and it inspired me to always do the same, as the print-version contains less ads and clutter). |
|
This is possible with stylesheets for Mozilla-based browsers (or others supporting CSS). It is not possible in Internet Explorer. However, IE offers the user a possibility to print all links. What you can easily do in "all" browsers is to hide the underline. These are appropriate questions for a CSS newsgroup. |
#6
| |||
| |||
|
#7
| |||
| |||
|
|
How would you do so in Mozilla-based browsers? Can you give me a hint? I understand that it is standard CSS, but IE won't support it. |
#8
| |||
| |||
|
|
An anchor tag should not be visible on the print page. The user should not be able to have the print page and click on a link. Instead... a href="bla">caption</a should be replaced with something like... caption --> bla This is possible with stylesheets for Mozilla-based browsers (or others supporting CSS). It is not possible in Internet Explorer. However, IE offers the user a possibility to print all links. What you can easily do in "all" browsers is to hide the underline. These are appropriate questions for a CSS newsgroup. |
![]() |
| Thread Tools | |
| Display Modes | |
| |