place a title like <h3 class="visible-print-block">Contact</h3> at the top of your .tab-pane elements to display only when printing
2.5.3
change the onclick="window.print()" by onclick="$.printPreview.printPreview()"
add an optional target to the printPreview function: onclick="$.printPreview.printPreview('target id')"
The "Print" icon, with a link to the print version, can be integrated into every page except the home page. It is positioned at the top right of the content column. A click on the icon opens the print dialog window. This button should be hidden on smallest devices where this functionnality is usually not available.
You can target a specific element to isolate and print by adding a data-print="ID" on the wrapper and setting onclick="$.printPreview.printPreview(ID)" on the print button. If a data-title attribute is set on the wrapper, it will be displayed as the title of the printed page.
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quos labore non cum eligendi cumque, ipsa, repudiandae consequatur aut ducimus, molestiae nesciunt consectetur laborum pariatur accusamus in aspernatur quod quae possimus!
<p class="hidden-xs"><a href="#" onclick="$.printPreview.printPreview()" class="icon icon--before icon--print">Print this page</a></p>
<p class="hidden-xs"><a href="#" onclick="$.printPreview.printPreview('example-print')" class="icon icon--before icon--print">Print only the container below</a></p>
<div class="example" data-print="example-print" data-title="Big pretty Title">
<h4>We only want to print this</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quos labore non cum eligendi cumque, ipsa, repudiandae consequatur aut ducimus, molestiae nesciunt consectetur laborum pariatur accusamus in aspernatur quod quae possimus!</p>
</div>
added the .social-sharing class to the #social-sharing element
With the social sharing function, contents can be shared on social networks. In order to protect the privacy of the users, the function contains an activation mechanism. The user first has to activate the service before being able to share contents via his or her social network.
At the moment, Facebook, Twitter, Google+, Xing and LinkedIn are supported. Just add the correct Open Graph meta tags to get the preview images and descriptions.