We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Breadcrumbs positioning on mobile view

Breadcrumbs positioning on mobile view

jmariegocela
Shopify Partner
54 1 8

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.

 

Screenshot 2024-09-30 at 12.41.07 PM.png

 

Thanks.

Replies 11 (11)

dws_pvt_ltd
Shopify Partner
369 69 88

@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.

Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: sales@dolphinwebsolution.com.
For more information visit our website Dolphin Web Solution Pvt Ltd.
jmariegocela
Shopify Partner
54 1 8
dws_pvt_ltd
Shopify Partner
369 69 88

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.

Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: sales@dolphinwebsolution.com.
For more information visit our website Dolphin Web Solution Pvt Ltd.
jmariegocela
Shopify Partner
54 1 8

How can we exactly do this?

nidhidhiman004
Shopify Partner
88 6 8

Hi @jmariegocela 

can you please send us your website url

 

Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me - nidhidhiman004@gmail.com Skype: live:.cid.4caf71e25fc2bb1e, Email me -rahul@prowebcoder.com - Skype: live:dhiman.639
jmariegocela
Shopify Partner
54 1 8

lynth
Shopify Partner
204 11 33

Like said before. Please share your URL.

If my tips are useful, just mark it as the solution. Cheers!
Feeling grateful? Buy me a coffee!
jmariegocela
Shopify Partner
54 1 8

nidhidhiman004
Shopify Partner
88 6 8

Hi @jmariegocela 

 

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:

nidhidhiman004_0-1727765801561.png

i hope it will work

Thanks and regards

 

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me - nidhidhiman004@gmail.com Skype: live:.cid.4caf71e25fc2bb1e, Email me -rahul@prowebcoder.com - Skype: live:dhiman.639
jmariegocela
Shopify Partner
54 1 8

I can't find product.css or base.css in the backend

nidhidhiman004
Shopify Partner
88 6 8

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

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me - nidhidhiman004@gmail.com Skype: live:.cid.4caf71e25fc2bb1e, Email me -rahul@prowebcoder.com - Skype: live:dhiman.639