How can I enlarge a logo on my website?

How to make logo bigger?

url : zialor.com

paswword : zialor

Thank you..

Hello @abhi14

Check your theme option if there logo size option available if not you can add this css to theme.css

.header__logo__link {
width: 270px !important;
}

note: 270px is new size you can change to any number as it fit there

Hello @abhi14

You need to customization your theme. Or go to theme option >click eidt> add this css to theme.css

.header__logo__link {
width: 270px !important;
}

as you can set your width as like you want

Thank you…It worked!

But how can do the same with mobile?

you can use

@media only screen and (max-width: 400px){

.header__logo__link {
width: 270px !important;

justify-content: space-between;
}

}

@abhi14 add this css

@media only screen and (max-width: 479px) {

.header__logo {
justify-content: space-between;
width: 44vw;
}

}