Shopify themes, liquid, logos, and UX
Hi,
I'm looking to move the starting point up closer to header. There's to much padding on mobile
my site is https://luxurymrkt.com/collections
Hi @Luxurymrkt
Thats, is why there is negative margin?
Yes didn’t want breadcrumbs on that page
Hi @Luxurymrkt ,
You can add this code to your css file
@media only screen and (max-width: 768px) {
.breadcrumb {
margin: -62px 0 50px; //adjust margin according to your preference
}
}
Result:
If you need further assistance, feel free to reach out!
I hope this helps! If it does, please like it and mark it as a solution!
Regards,
Sweans
Hello @Luxurymrkt
Go to online store ---------> themes --------------> actions ------> edit code------->Theme.css -----> line number 12355
search this code
@media only screen and (max-width: 768px) {
.breadcrumb {
font-size: calc(var(--typeBaseSize)*0.85);
margin: -40px 0 50px;
}
}
and replace with this code
@media only screen and (max-width: 768px) {
.breadcrumb {
font-size: calc(var(--typeBaseSize)*0.85);
margin: -100px 0 50px;
}
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024The Hydrogen Visual Editor is now available to merchants in Shopify Editions | Summer '...
By JasonH Sep 2, 2024Note: Customizing your CSS requires some familiarity with CSS and HTML. Before you cust...
By JasonH Aug 12, 2024