Skip to content Skip to main navigation Skip to footer

Disable or Hidden the "Previous" button

Welcome to QSM Support Forum. Forums QSM Pro Support Disable or Hidden the "Previous" button

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #635
    Eric ChanEric Chan
    Participant

    Hi Manager,
    I have a quick question about disable the “Previous” button as the discance between Previous and Next button are very close on the mobile.
    I tried something like this but no luck.

    
    .qmn_btn.mlw_qmn_quiz_link mlw_previous {
      display: none;
    }
    

    My survey url is :

    SYDNEY MPHP Home Buyer Program!

    Would you please help me ?
    Many Many Thanks,
    Eric

    • This topic was modified 4 years, 6 months ago by KharisKharis.
    #644
    KharisKharis
    Keymaster

    Hello Eric,

    Try adding this CSS code to add more space.

    
    @media only screen and (max-width: 499px) {
      .qmn_pagination .qmn_btn.mlw_previous {
        margin-bottom: 15px;
      }
    }
    

    To remove it, use this one:

    
    @media only screen and (max-width: 499px) {
      .qmn_pagination .qmn_btn.mlw_previous {
        display: none !important;
      }
    }
    

    Regards,
    Kharis

    #651
    Eric ChanEric Chan
    Participant

    Hi Kharis,
    Super thanks !!!
    It works perfectly !!!
    Best regards,
    Eric

    #670
    KharisKharis
    Keymaster

    You’re welcome Eric!

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

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