Hi
Search the topics but could not find a solution to my issue.
Is is possible to move the cart icon appearing on my iPhone to the right edge of the device.?
Getting ready to launch new website by next weekend, so would like to have this fix before then if possible.
Here’s a link to my website: https://silviafindings.wpengine.com/
Thank you
Lyse
Hey tremblayly,
Try adding this css code in Quick CSS:
@media only screen and (max-width:767px) {
.responsive #top .cart_dropdown {
margin-right: 0 !important;
}
}
Let us know if this helps.
Best regards,
Nikko
Hi Nikko,
This did not move the icon. The icon seems to be attached to the right edge of the menu bar, not the page screen width.
Thanks
Lyse
Hi,
Try to clear the browser cache and check it again, if it’s still not good, can you post a screenshot?
Cheers!
Nikko
Hi Nikko,
I did clear the browser, but it does not change the icon placement.
Here’s a link to a screenshot: https://www.dropbox.com/s/7402dtq3rvhtjzh/iphone%20cart%20icon.PNG?dl=0
Thank you
Lyse
Hi!
Try to replace the code I gave you:
@media only screen and (max-width:767px) {
.responsive #top .cart_dropdown {
margin-right: 0 !important;
}
}
To this one:
@media only screen and (max-width:767px) {
#top #header_main {
z-index: 20;
}
.responsive #top .cart_dropdown {
margin-right: 0 !important;
top: -100px !important;
right: 1% !important;
}
}
Hope this helps :)
Best regards,
Nikko
Hi Nikko
That worked perfectly once I adjust the icon to be positioned where I wanted it!
Thank you so much for your great support
Lyse
Hi Lyse,
Glad we could help :)
Best regards,
Nikko