Hi,
Can someone help me how I can move the breadcrumbs for mobile view from under the main photo to on top of the product photo. Our theme is Release.
Thanks.
A Shopify store owner needs to reposition breadcrumbs on mobile view from below the product photo to above it. The store URL is kinnder.com.au.
Technical Challenge:
Proposed Solution:
A developer provided CSS code to add to the theme.css file:
@media only screen and (max-width: 768px) {
.shopify-section.shopify-section--product nav.breadcrumbs {
position: absolute !important;
top: -85% !important;
}
}
Implementation Steps:
The discussion remains open as the store owner is working through locating the correct file to implement the fix.
Hi,
Can someone help me how I can move the breadcrumbs for mobile view from under the main photo to on top of the product photo. Our theme is Release.
Thanks.
@jmariegocela , Please share your store URL and password.So that I will check and let you know the exact solution here.
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
Like said before. Please share your URL.
Hello @jmariegocela , Your code for the breadcrumbs is comes from the block of the product information. So that it is structured like this. You have to put code of the breadcrumbs in the custom section or snippet file and called it on to the product information.'make a custom section or custom snippet for this.
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
It is https://www.kinnder.com.au/ …
How can we exactly do this?
add this code on product.css file or base.css file at the very bottom of the file
Try this css :
@media only screen and (max-width: 768px) {
nav.breadcrumbs {
position: absolute;
top: -58%;
}
}
result:
i hope it will work
Thanks and regards
I can’t find product.css or base.css in the backend
Hello @jmariegocela
Sorry i see your theme css files your theme did not support base.css, in your theme there is theme.css file follow these steps
you should find theme.css
click on edit code and you will see theme code editor there you will see search box on the left side and search there theme.css
once you found the file paste code at the end of the file.
@media only screen and (max-width: 768px) {
.shopify-section.shopify-section--product nav.breadcrumbs {
position: absolute !important;
top: -58% !important;
}
}
Thanks