Based on the image's size, I am assuming that it may be causing the following issue:
I have been given two massive 10MB SVG images by a graphic designer to use as background images for a client's landing page. The graphics are quite complex and I'm not sure if they are suitable for SVG format. I have tried various methods to call them into the page without success. On the other hand, I have also successfully rendered very small SVG images using the code:
<img id="logoImg" src="SvgLogo.svg" alt="OurLogo">
I suspect that the large file size of the 10MB image might be causing issues (even though I haven't compressed it with gzip). Does anyone have any suggestions if the size is indeed the root cause of my problem?