
Originally Posted by
maxwellunlimited
The fix was to add the CSS background-color attribute to the images themselves, such as img { background-color:#fff; }
I specified this only for images that had no background color for any object beneath them. All the other images mimicked transparency.
This may stem from an earlier 'problem' with background color as it pertains to css images in the background. In both long and shorthand forms, the color should always precede the image URL.
Once I learned this, the rule became: foreground, background color, image url in all instances.
Code:
CSS
color: blue;
background: #ccc url(some-img.png) no-repeat 0% 0%;