Hello,
The only way to change header logo size is inside Maskitto Light Options > Header and change the header layout where the logo is bigger.
I was able to make the logo size larger from editing the CSS in Google Chrome by changing the max-height like this.
.header-layout-standard-large .navbar-brand img {
max-height: 80px!important;
margin: -14px 0!important;
}
but when I tried to make the change permanent by adding it to the CSS Code section in settings it would not take. I think it has something to do with overriding !important.
Hello,
This should work:
body .header-layout-standard-large .navbar-brand img {
max-height: 80px!important;
margin: -14px 0!important;
}