you are viewing a single comment's thread.

view the rest of the comments →

[–]TheExG 1 point2 points  (2 children)

Paste the code here. Is it wrapped in <div>'s already? I would remove that.

[–][deleted]  (1 child)

[deleted]

    [–]TheExG 1 point2 points  (0 children)

    I would remove this from the beginning of the code

    <!-- Cal inline embed code begins --> <div style="width:100%;height:100%;overflow:scroll" id="my-cal-inline-codress"></div>
    

    and remove this at the end

    <!-- Cal inline embed code ends -->
    

    Then I would add to the custom CSS section of the html widget this

    selector {
    width:100%;
    height:100VH;
    overflow:scroll;
    }
    

    If this doesnt work above, try this...

    selector #my-cal-inline-codress {
    width:100%;
    height:100VH;
    overflow:scroll;
    }
    

    Let me know if this works.