Shopify themes, liquid, logos, and UX
Hey,
I've used this code before the give the breadcrumbs different margins on different pages in my strore, and it works great:
{% if template.name == 'product' %}
<style>
@media (min-width: 769px) {
.breadcrumbs {
margin-left: 70px;
}
}
</style>
{% endif %}
However I want to do the same thing for the policy page but haven't been able to find the right "Id" for it.
I want the same margin on the policy page that the product page has.
The page: https://r1vex.myshopify.com/pages/test
Thanks for helping
Solved! Go to the solution
This is an accepted solution.
Hey @manbru
Add this code right below the code you have added
{% if template.name == 'page' %}
<style>
@media (min-width: 769px) {
.breadcrumbs {
margin-left: 70px;
}
}
</style>
{% endif %}
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
This is an accepted solution.
Hey @manbru
Add this code right below the code you have added
{% if template.name == 'page' %}
<style>
@media (min-width: 769px) {
.breadcrumbs {
margin-left: 70px;
}
}
</style>
{% endif %}
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025