Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1265580

    Hi,
    By default, minus and plus buttons on quantity selector are hidden on screens smaller than 768px.
    Could you please tell me how to display them on all devices?
    Thanks a lot!

    #1265889

    Hey fcp,

    Add this to quick css:

    @media only screen and (max-width: 767px){
    #top .main_color .quantity input.plus, #top .main_color .quantity input.minus {
        display: block!important;
    }}

    Best regards,
    Jordan Shannon

    #1266156

    Hi Jordan,
    Thanks for your reply.
    I already tried this code. It displays minus and plus, but not the good way (see screenshot on private content).
    What do I need to add to correct the display?
    Thanks!

    #1267890

    Hi,

    Please use the code as following instead

    @media only screen and (max-width: 767px){
    #top .main_color .quantity input.plus, #top .main_color .quantity input.minus {
        display: inline-block!important;
    }}

    Best regards,
    Yigit

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