Hi my drop downs for how to, shipping etc. on my product page shows the drop down text when you hit the text. But when you click the arrow it shows the cart.
Does anyone know the fix for this?
Thanks in advance
Hi my drop downs for how to, shipping etc. on my product page shows the drop down text when you hit the text. But when you click the arrow it shows the cart.
Does anyone know the fix for this?
Thanks in advance
Hello @dean27
As I can see there is an issue of the CSS here.
You can go online store → Click on the Customize → Click on the theme settings https://prnt.sc/MyQT2bUfQw7C → Add custom CSS here https://prnt.sc/qVxkhh4dxGy- which is mentioned below.
#cart-icon-bubble svg {
height: 88px;
}
Once you add this CSS it will allow you to click on the arrow to open the accordian. I hope that works.
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
@dean27 The issue is because the cart icon is not set to proper width and height. Please follow the below steps to resolve it. It will fix the issue that cart drawer opening when clicking anywhere other than the cart icon in the header section. Let us know whether it is helpful for you.
#cart-icon-bubble > svg {
height: auto !important;
width: auto !important;
}
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.
It sounds like there might be a conflict with your dropdown or cart functionality. Try these fixes:
Thank you soo much it worked!
Thank you very much!
Thanks for your time and reply, the above solutions worked.