CSS @media print issues with background-color;

I’m new here at this company and we have a product that uses miles of css. I’m attempting to make a printable stylesheet for our app but I’m having issues with background-color in @media print. @media print { #header{display:none;} #adwrapper{display:none;} td { border-bottom: solid; border-right: solid; background-color: #c0c0c0; } } Everything else works, I can … Read more

Why are my CSS3 media queries not working on mobile devices?

In the styles.css, I am using media queries, both of which use a variation of: /*–[ Normal CSS styles ]———————————-*/ @media only screen and (max-width: 767px) { /*–[ Mobile styles go here]—————————*/ } The sites resize to the layout I want in a regular browser (Safari, Firefox) when I shrink the window, however, the mobile … Read more