How to add text under logos in shopify DEBUT theme?

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:

  • For example, your logo has html code like this:
<img src="path/to/your/logo.png" alt="Logo">
  • Then add a div tag outside and a line of text below:
<div class="logo-container">
    <img src="path/to/your/logo.png" alt="Logo">
    <div class="text-below-logo">Your Text Here</div>
</div>
  • Then add a little css so your text is the same color as the icon
​<style>
.logo-container {
    text-align: center;
}

.text-below-logo {
    font-size: 16px;
    color: #517a99;
    margin-top: 10px;
}

​</style>

Hope it helps @D_Juhasz !