Site logo

Archived topic

Create a Text with Icon (svg) inside

7 replies · Started by Kevin on February 17, 2023

Viewing posts 1–8 of 8

Hey, I would love to have a Text inside the Footer which includes an Icon, but without having put an emoji inside ;)

Text could be: Made with Love in Austria and the Love is an Icon.
Any idea without having using 3 Header Blocks?

Thx

Hi there,

you could add a HTML block to add the text and the inline icon.
eg.

<span class="footer-text">Made with <img src="your_image_url" width=50 height=50 /> in Austria</span>

Ohh nice, thank you this was something which I could have thought of myself ;)

A small follow up question: How would i "center center" this image?

Hmm... it kinda should be center by default using that markup. Can it see it on your site ?

Sure, i open the page.

Try adding this CSS:

.footer-text {
    display: flex;
    justify-content: center;
    gap: 4px;
}

Amazing - Thank you

You're welcome

This archived topic is closed to new replies.