Adding Image/Logo to the Footer

Hi there, i’am new to Kirby and php and try to add a logo at the end (center) of my footer snipset but i coluldn’t get it to work with:
<img src="logo.jpg" style="text-align: center" />

The Frontend shows me just a brocken image.

Thanks for your Help, jan

Hi there and welcome to the forum.

Where is that image supposed to come from? From the assets folder? From somewhere in your content file?

Hi, yes, it’s in the assets/images Folder - sadly it even won’t show up if i try to open it with the direct link.

Should then be

<img src="/assets/images/logo.jpg" style="text-align: center" />

Thank you, it works now!