Get rid or URL's in the text when printing?

Version 1.1 by Clemens Robbenhaar on 2015/11/14

The flamingo skin, which is based on bootstrap, has the feature that the printed version of pages displays the URL after every link contained in the text.

If you do not like this feature, you can get rid of it by a StyleSheetExtension:

  • create a new page, i.e. somehwere in the "XWiki" space.
  • go into the object editor and add a XWiki.StyleSheetExtension
  • in the "Code" text area add the following CSS code:

@media print {
  
a[href]:after {
    
content: none
  
}
}

 

  • choose "On this wiki" from the "Use this extension" dropdown
  • save the changes

Get Connected