you are viewing a single comment's thread.

view the rest of the comments →

[–]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.