Hi guys,
How do I make the cart on mobile bigger? It’s hard to tap the cart because it is so small.
Thx in advance.
Sincerely,
Morticka
Hey Morticka,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
#top .cart_dropdown_first .cart_dropdown_link {
font-size: 30px;
}
If you need further assistance please let us know.
Best regards,
Victoria
Great, it worked, thx Victoria! :D
The icon however is also bigger on desktop, I would like only to display a bigger cart icon on mobile.
Using the media only code moves the cart to the right of the hamburger menu.
How can I fix this?
Sincerely,
Morticka
Hi,
We can wrap the previous css inside a css media query so that it will only affect the mobile view.
@media only screen and (max-width: 767px) {
#top .cart_dropdown_first .cart_dropdown_link {
font-size: 30px;
}
}
Best regards,
Ismael
Hi Ismael,
Thx that worked! :D
(Found my problem, I used the wrong query, min width in stead of max! Duh. :) )
You can close this ticket.
Sincerely,
Morticka
Hi Morticka,
Great :)
We are closing the thread.
If you need further assistance please let us know in a new one.
Best regards,
Victoria