How can I adjust the size of my mobile SVG logo without affecting the desktop version?

I created a new SVG logo for my store header: custommattressmakers.com. It looks great and the size is perfect.

However, the size of the logo on mobile is very small. I’ve already set the maximum logo with to 250 px in the Customize header settings. Is there a way to make the mobile SVG logo size larger and not affect the desktop one? I’ve attached pictures of both as reference.

Hi @NickCMM , add the below code to your theme’s CSS file.

@media screen and (max-width:480px) {
.header__heading-logo {
    width: 230px !important;
}
}

Notice I used 230px here. You can increase or decrease it per your need.

Thanks for the reply! Would this be added to the base.css file? Or a different one? Does it go at the bottom of the file, or top?

@KabirDev I actually just added it to the Custom CSS section. It’s looks beautiful. The logo is the perfect size on mobile now.

Thanks for your help with a solution to this,