Hi,
I want to make my mobile logo bigger
and also move the logo and the contact button full width of page on mobile
my site is https://eftfkw-vc.myshopify.com
A user seeks to enlarge their mobile logo and extend both the logo and contact button to full page width on mobile devices.
Solutions Provided:
Three community members offered CSS code snippets targeting mobile viewports (max-width: 749px or 768px):
Implementation:
All solutions involve adding custom CSS through either:
The discussion remains open with multiple viable approaches offered but no confirmation from the original poster on which solution was implemented or successful.
Hi,
I want to make my mobile logo bigger
and also move the logo and the contact button full width of page on mobile
my site is https://eftfkw-vc.myshopify.com
Please add this code to Custom CSS in Online Store > Themes > Custmize > Theme settings
@media (max-width: 749px) {
html .header {
padding: 8px 2rem 6px 1rem;
}
html .scrolled-past-header .header__heading-logo-wrapper {
width: 100%;
}
}
Hello @Luxurymrkt
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
@media (max-width: 749px) {
html .scrolled-past-header .header__heading-logo-wrapper {
width: 100% !important;
}
.header__heading-link {
padding: 0rem !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @Luxurymrkt
To complete your requests, please follow these steps:
@media screen and (max-width: 768px){
header.header {
padding-inline: 0 !important;
}
.header__heading-logo-wrapper img {
width: 200px !important;
max-width: unset !important;
}
}
Here is the result:
I hope this helps
Best,
Daisy