I am attempting to include an SVG of an Instagram icon along with some text within a paragraph in the footer section of my website. This specific footer is part of the spaced-blog Hugo theme.
My goal is to have the SVG align nicely with the text in the paragraph and also add some left padding. I have tried using CSS on the span that contains the SVG, but unfortunately it did not move the SVG accordingly. Below is the code snippet:
<footer class="footer p-2">
<p class="m-b-s">{{ .Site.Title }} © {{ now.Format "2006"}}</p>
<a href="">
{{ partial "icons/instagram-logo.svg" . }}
</a>
</footer>