Skip to Content
Menu
This question has been flagged
2 Replies
3406 Views

I want to resize it with width of 120 px, how can I do it?

Avatar
Discard
Best Answer

Create a custom css with the following and add it to the web.assets_frontend by extending it.

header .navbar-brand.logo img {
    width: 120px;
}


Avatar
Discard
Best Answer

Hi,

You can also use the following method

In the website editor you can click on customize theme and select SCSS(CSS) from the dropdown. Add the following code in that css file.


.navbar-brand.logo img {

    width: 120px !important;

}

Regards

Avatar
Discard