I would like to reduce the logo size on mobile, is this possible?
Thank you!
URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/collections/rappid-test
Im using the Trade theme.
Goal: Reduce the logo size on mobile for a Shopify store using the Trade theme.
Proposed solution: Add a CSS media query to target mobile widths and set a smaller logo width.
Steps:
Context: The media query applies the style only when the viewport width is 768px or less (typical mobile/tablet breakpoint).
Status: A clear, actionable CSS fix was provided; no confirmation from the original poster yet, so resolution is unconfirmed.
I would like to reduce the logo size on mobile, is this possible?
Thank you!
URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/collections/rappid-test
Im using the Trade theme.
Instructioins
Go to ‘Online Store’ → Themes
From your Active Theme click on the 3 dots (…) → Edit Code
Inside the Assets Folder, locate the file ‘base.css’
Add the below code at the end of the file:
@media (max-width: 768px){
.header__heading-logo{
width: 100px;
}
}
Change the width according to your preference