I have a project that is working flawlessly currently in Google Chrome that uses CSS and content:url(''); to place images into pages/headers/footers.
When I test my site in Internet Explorer and Microsoft Edge, these images do not display whatsoever. I'm looking for some kind of workaround that allows me to keep the formatting I have already done as well keep the images in the CSS.
To keep this post short, I will only post a snippet of the code from an image in the footer.
#merchantFoot {
content:url('../images/paypal.png');
width: 40%;
display: block;
padding: 2%;
}
I have tried using #merchantFoot:before in this case, but my image blows up to a huge portion (I believe the original dimensions of the image) despite the styling given to this element.