Hello everyone,
I would like to add some text underneath the logos in my webshop, but I can’t do that.
Right now I only have the logos, like this:
But I would like it to look like this:
Do you have any suggestions?
Thank you in advance,
David
Hello everyone,
I would like to add some text underneath the logos in my webshop, but I can’t do that.
Right now I only have the logos, like this:
But I would like it to look like this:
Do you have any suggestions?
Thank you in advance,
David
Hi @D_Juhasz
To add text below the logo you can do the following:
<img src="path/to/your/logo.png" alt="Logo">
<div class="logo-container">
<img src="path/to/your/logo.png" alt="Logo">
<div class="text-below-logo">Your Text Here</div>
</div>
<style>
.logo-container {
text-align: center;
}
.text-below-logo {
font-size: 16px;
color: #517a99;
margin-top: 10px;
}
</style>
Hope it helps @D_Juhasz !