Search code examples
asp.netvb.nettwitter-bootstrapprintingcolors

How can I print colors when printing a page in bootstrap?


I'm trying to print a page with colors on my asp.net site. But all the colors just come out white. However my Highcharts colors and images come out in color. I'm using Bootstrap 3, not sure if that is affecting anything, and I've also check the box to print background colors. Does anyone know why my colors aren't printing?


Solution

  • Found the solution shortly after posting the question. The following line in bootstrap.css needs to be changed.

    @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;}
    

    For my purposes I removed the color: and background: properties.