I am trying to link a stylesheet to a masterpage in SharePoint with asp.net. It is a print-only stylesheet. The problem im having is that @media print does not work in IE8.
Can i add a stylesheet in asp.net that only applies to print media?
<SharePoint:CssRegistration ID="CssRegistrationCommon" Name="<% $SPUrl:/Style Library/CSS/common.css %>" After="corev4.css" runat="server"/>
Thanks
You can also specify the media on the link for the stylesheet.
media=”print”
make sure you main stylesheet points to something like screen/projector so they don’t overlap