How do I make the logo bigger on pipeline version. I have tried adjusting on the page width however it doesn’t affect the mobile version. Please advise best solution. please see attached the small “Koster Kulture” logo below as apart of the transparent header
Topic summary
A user seeks to enlarge the logo in Shopify’s Pipeline theme, particularly for mobile devices, as adjusting page width settings doesn’t affect mobile display.
Proposed Solutions:
- Multiple contributors suggest adding custom CSS code to
theme.liquidortheme.scss.cssfiles - Code targets mobile viewports (max-width: 749px/767px) to increase logo width to 225px
Complications Encountered:
- Initial CSS fixes caused the logo to lose center alignment
- Additional CSS (
display: flexon.header__mobile) shifted the cart icon position - The solution appears device-specific: works on some phones but fails on iPhone 14 Pro Max, where the cart overlaps incorrectly
Current Status:
- The mobile centering issue remains unresolved for Apple devices, possibly due to CSS compatibility limitations
- One contributor warns that fixing the iPhone issue might break functionality on other devices
- The user additionally requests desktop header enlargement (logo, menu, cart), but is advised this requires extensive CSS modifications that may look disproportionate
Outcome: Discussion ends without a complete solution, particularly for iPhone compatibility.
Hey @yasminkoster
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
@yasminkoster - it needs multiple css settings, add this css to the end of your theme.css file and check, change values as per the need, it is for mobile view only
@media only screen and (max-width: 749px){
.header__logo{width: 225px !important;}
.header__logo__link{--LOGO-WIDTH: 225px !important; max-width: 100vw;}
.header__logo__link img{width: 225px;}
}
This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Theme.scss.css
@media only screen and (max-width: 767px){
.header__logo{
width: 225px !important;
}
}
Hope you find my answer helpful!
Best regards,
Richard | PageFly
@yasminkoster - I think you have removed all the code, can you please add again, so I can check settings to make it center?
@suyash1 yes thank you I have now added this back in
@yasminkoster - add this css
@media only screen and (max-width: 749px){
.header__mobile{display: flex !important;}
}
thank you so much for helping me. However it has now moved the cart over. please see image below. I would like just the logo to be in the middle and the cart to stay on the far right. If the logo can line up in the middle that would be great, like you showed me in your screenshot. see the comparison below
@yasminkoster - I see like this
Yes @suyash1 exactly
@yasminkoster - what is your device width?
@suyash1 The Apple iPhone 14 Pro Max (16th Gen) has height of 6.33” (160.7 mm), width of 3.05" (77.6 mm),
@yasminkoster - may be that is the reason, because I have seen many times css settings do not work on apple devices as if it is not supported, please check if you get any apple expert who can solve this issue else unfortunately will need to remove the code…
this might be time taking task, so not sure if anyone will do it for free
@suyash1 thank you for your help. Is there anyway to just move the cart back over and we could keep the logo where is?
@yasminkoster - the code which we use right now works for other phones , so if we try to change it then it might break on other devices
@suyash1 thank you ok. will this code work for any other iphone except the 14?
@suyash1 are you able to share code that will make the logo bigger on the desktop version? currently it looks like this. the whole top bar is extremely small do you have any ways to enlarge the whole header menu, logo and cart?
@yasminkoster - it can be done but will mneed many css settings and will look very wierd
no worries @suyash1 thank you anyway









