I am currently trying to take a logo used on a site and apply it to a certain spot on a print page. In doing so, I would like to fill it differently. However, the fill effects do not seem to be working.
When I view the logo.svg in a separate tab and inspect it, I can successfully fill each one of the two of its components with a new color.
However, when I bring it as a background image into a DIV on the print page, the fill no longer works. Could someone tell me what the cause of this may be?
<div class="print-logo">
</div>
.print-logo {
background: url(../img/logo.svg);
background-size: contain;
background-repeat: no-repeat;
height: 180px;
width: 200px;
background-position: center center;
margin: auto;
fill: black;
}
On the SVG page, I can do the following things successfully.
.fil0 {
fill: green;
}
.fil1 {
fill: red;
}
(As I mentioned above, the SVG seems to consist of two paths and classes).