Reputation: 336
is anyone knows why is IE (8,9 Tested) refuse to print the right side of this coupon? (on the Red Background) the left side (phone number) is printed ok.
other browsers (chrome, FF) print whole doc ok.
http://www.weekend.co.il/templatesfiles/coupons/coupon.aspx?id=20483%20&resttype=19&coupontype=2
to see the Bug you can just print to file / or left click >> Print Preview..
Thanks!
Arik
Upvotes: 1
Views: 659
Reputation: 336
found it ! need to specifiy the Background image as follow:
.background
{
display: list-item;
list-style-image: url(yourbackgroundimage.gif);
list-style-position: inside;
}
Thanks DahlinDev https://stackoverflow.com/a/1218059/422827
Upvotes: 1
Reputation: 24729
IE is not set to print background images by default.
Goto Print Preview
Click the gears icon.
Tick the box - Print Background Colors and Images.
Here is my printing attempt.
Upvotes: 2