When you print nodes with extlinks, there is a gap where the extlink icon was. This makes the flow of text rather messy and harder to read. To fix this I tried adding display:none to my css file but this didn't work. I later solved this by adding the following css...

@media print {
	span.ext {
    height: 0;
    width: 0;
    position: absolute;
  }
}

The idea for the solution came from http://www.alistapart.com/articles/printyourway/.

Can I suggest that this css is hardcoded into a future release?

CommentFileSizeAuthor
#1 extlink_print_spacing.patch396 bytesquicksketch

Comments

quicksketch’s picture

Version: 6.x-1.7 » 6.x-1.9
Status: Active » Fixed
StatusFileSize
new396 bytes

I've committed the attached patch which is similar to your recommendation, using @media in the stylesheet to target printing. This will be included in the 1.10 version.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.