Forum Moderators: open

Message Too Old, No Replies

Links being displayed in print view

         

pmmenneg

1:54 am on Mar 24, 2010 (gmt 0)

10+ Year Member



Have a website, and when I launch print preview in any of Firefox 3.6 or Safari 4, any links on the page are displayed both as on the page, and in full, eg:

The text link would be the word 'jump' with a url of http://www.example.com/jump, and on the print preview it is showing 'jump' (http://www.example.com/jump)

Anyone ever seen this behavior before?

Thanks

lavazza

2:47 am on Mar 24, 2010 (gmt 0)

10+ Year Member



It can be implemented via CSS

e.g.
@media print {
a[href]:after{
content: " (" attr(href) ") ";
}
}

pmmenneg

3:39 am on Mar 24, 2010 (gmt 0)

10+ Year Member



Well I guess my issue is that this behavoir is happening without implementation... i.e I never added the code you have posted to the site, yet the behavior exists... any ideas?

penders

11:02 am on Mar 24, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



What does Opera show?

pmmenneg

12:47 pm on Mar 24, 2010 (gmt 0)

10+ Year Member



Shows the same in opera... so strange

penders

1:28 pm on Mar 24, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Does this happen to other websites as well, or just your own?

pmmenneg

5:55 pm on Mar 24, 2010 (gmt 0)

10+ Year Member



Sigh... was using blueprint framework, and of course the framework's print-spcific page was adding in the rule you mentioned above. *slaps forehead*.

Thanks for the patience!