Skip to main content

iframe display on mobile

Comments

3 comments

  • Permanently deleted user

    Hi Mark,

    Thank you for getting in touch with us.

    We just checked your project and you didn't add it in the correct place, you should add the Custom CSS to the embed code of your calendar.

    Best regards, Nelea.

    0
  • Mark Flint

    I've tried that Nelea. For instance, I've just added max-height:100%!important to the embed code now. It displays fine when you inspect on Chrome, but on actual mobile it still cuts off. Can you see the same thing?

    0
  • Denis B

    Hi Mark,

    Please, add CSS code below in Custom CSS, this should solve the problem with height.

    .calendly-inline-widget iframe {
       max-height: 100% !important;
    }

    If this rule should work only for mobile devices, then use this code with media query:

    @media (max-width: 767px) {
       .calendly-inline-widget iframe {
          max-height: 100% !important;
       }
    }

    Best regards

    0

Please sign in to leave a comment.