Hi,
I have been given a licensed site to use for a new market but I have no options for a mobile logo size in the theme settings so it needs to be coded manually.
Here is a snippet of the code in the base.css file. I need to make the width approx 220px.
Thanks in advance!
.header__heading-link:hover .h2 {
color: rgb(var(–color-foreground));
}
.header__heading-link .h2 {
line-height: 1;
color: rgba(var(–color-foreground), 0.75);
}
.header__heading-logo {
height: auto;
max-width: 100%;
}
.header__heading-logo-wrapper {
width: 100%;
display: inline-block;
transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);
}
@media screen and (max-width: 989px) {
.header__heading,
.header__heading-link {
text-align: center;
}
.header–mobile-left .header__heading,
.header–mobile-left .header__heading-link {
text-align: left;
justify-self: start;
}
.header–mobile-left {
grid-template-columns: auto 2fr 1fr;
}
}
@media screen and (min-width: 990px) {
.header–middle-left .header__heading-link,
.header–top-left .header__heading-link {
margin-left: -0.75rem;
}
Thanks in advance!

