How can I adjust logo width for desktop and mobile on Dawn theme?

Currently, I have set the width of my header logo to 200px to ensure it functions properly on both mobile and desktop devices. However, I am wondering if it is feasible to adjust the width to 800px for desktop and 200px for mobile. Despite attempting to modify the code, I have not been successful in achieving this. Dawn theme

Hi @phillik ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:

Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file

.header__heading-logo {
 width: 800px !important;
 max-width: 100%;
}
@media (max-width: 749px) {
.header__heading-logo {
 max-width: 200px;
}
}

Hope my answer will help you.

Kate from PageFly Team

1 Like

Thanks for solution.