Hi,
The shopping card on my website on my Ipad (not on mobile and desk/laptop) is positioned on the left side of the page and when you click on it the text ‘shopping card’ or ‘afrekenen’ (pay) does not show correctly. This is not good for my conversion. Do you have a solution?
Thanks!
Naima
Hi Naima!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
#menu-item-shop .dropdown_widget {
right: auto;
left: 10px;
}
#menu-item-shop .dropdown_widget .avia-arrow {
right: auto;
left: 30px;
}}
Cheers!
Yigit
Hey!
Please change the code to following one
@media only screen and (max-width: 990px) and (min-width: 540px) {
#menu-item-shop .dropdown_widget {
right: auto;
left: 10px;
}
#menu-item-shop .dropdown_widget .avia-arrow {
right: auto;
left: 30px;
}}
Regards,
Yigit
tx Yigit! It works!