Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1240752

    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

    #1241910

    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

    #1242203

    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

    • This reply was modified 4 years, 2 months ago by Morticka. Reason: Icon is also bigger on desktop, need it to be only bigger on mobile
    #1243113

    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

    #1243118

    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

    #1243303

    Hi Morticka,

    Great :)

    We are closing the thread.

    If you need further assistance please let us know in a new one.

    Best regards,
    Victoria

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.