Hello
I just wanted to share this because it took me a while to find an answer. I installed the ‘scalable vector graphic’ plugin but my logo was not showing up on Chrome or FF, and displaying in the middle on Safari, even though I’d set it to aligned left. I thought that maybe it was a plugin issue so instead installed SVG support but the problem persisted. It turns out that the SVG logo needs a size to be seen, so use this –
/* fixes bug where svg is not showing */
.logo img {
width: 340px;
height: auto;
}
Very simple and problem solved! If you use an SVG elsewhere, just assign a class and do the same :)
Hey webWahine,
Great, glad you found a solution and thanks for sharing, much appreciated :-)
Best regards,
Rikard
My pleasure! We are all part of an amazing global community :)