I’ve read some of the entries regarding using a SVG for the logo on the Integrity stack, however, the svg logo does not render when the site is loaded.
I can import svg into the media library just fine.
I have SVG Support plugin installed as well as adding this to the child theme.
function cc_mime_types($mimes) {
$mimes[‘svg’] = ‘image/svg+xml’;
return $mimes;
}
What am I missing to have the SVG load as the logo?
thanks