Печать моих пурпурных страниц выходила в виде ссылок / текста, без изображений. Я перешел к skin> frontend> "theme"> default> css> "print.css" и обнаружил, что если я закомментировал все после "@media print {" вплоть до закрывающей скобки "}", он напечатал все в совершенстве. Я добавлю код, который я использую сейчас, без закомментированного кода ниже.
/* ======================================================================================= */
/* Boilerplate Print CSS ========================START=========================== */
/*
* Media queries for responsive design
* These follow after primary styles so they will successfully override.
*/
@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
}
@media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)
Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
/* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
j.mp/textsizeadjust
html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}
/*
* print styles
* inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/
*/
/* Boilerplate Print CSS =========================END============================ */
Надеюсь, это поможет ...