Calendar widget - monthly you mobile version

Hello, I am new to this, and maybe there’s an answer and someone can help. I’m using the Calendar widget and it works well on my website, however, when I visit my side on a mobile device. The full month calendar appears very small and hard to read. My question is, is there a mobile version of this and I’m just not seeing it or would it be possible to create a mobile version calendar. Widget. Thank you all so much for your help.

1 Like

Hi there, @user18890 :wave:

Basically, the mobile view is already available in the app and should be automatically applied when checking from mobile devices. However, I see that for some reason it’s not applied to the widget on your website.

I’ve passed this issue on to the devs. I’ll report back once I have their response :slightly_smiling_face:

Due to the current non-adaptive viewport value, the entire width of the screen is interpreted as 1000 pixels, which is causing the mobile optimization of our widget and the entire website to break:

<meta name="viewport" content="width=1000">


To fix it, you need to replace the highlighted line in your website’s head with this one:

<meta name="viewport" content="width=device-width, initial-scale=1" />


Try it out and let me know if it worked :slightly_smiling_face: