Logo Image - Too small in theme DEBUT

I recently uploaded a new image for my Logo, using the same exact sizes I had previously used that appeared fine.

Now it appears too small, despite having the sizer on the maximum.

Logos that were saved and were the perfect size before now appear small.

Hi @toz1

Can you give me your page URL( with pass if your store password is enabled) so I can check it for you?

Kind & Best regards,
GemPages Support Team

https://www.dazzledcustomfabrics.com

Hi @toz1 ,

I checked your logo and found it show so big:

May I know if you still want to make it bigger?

Hello @toz1 ,

Under the admin panel, there is a logo size setting that can be set to the max-width of 250px, hence, need to increase it to the max-width that you need.

There are two ways to fix this.

You can also increase the size by using the below-provided code.

.site-header__logo-image {

max-width: 500px;

}

Or else,

Increase the size with the help of the admin panel and then add the below-provided code.

.site-header__logo-image img {

max-width: {{ section.settings.logo_width }}px;

}

Schema:

{

“type”: “range”,

“id”: “logo_width”,

“min”: 50,

“max”: 500,

“step”: 10,

“default”: 100,

“unit”: “t:sections.header.settings.logo_width.unit”,

“label”: “t:sections.header.settings.logo_width.label”

},

Hope it helps. Let us know if you need any help.

Regards,

CedCommerce