如何通过调整现有 CSS 来限制可用性日历的大小?

How can i limit the size of my availability calender by adjusting my existing CSS?

我正在使用 drupal (jollyness) 主题,我在 seosolutions.london

托管了一个模拟网站

我一直在尝试查看是否有 css 变通方法 "prevent my calendar displaying more than one month at a time" 或 "to hide any extra months from view"

我试过调整各种容器 div 的宽度(使用 chrome 开发人员),但似乎没有什么不同。

大家有什么建议吗?

尝试将此添加到您的 CSS 文件中:

.cal-viewport { width: 220px !important; }

虽然您应该避免在 CSS 中使用 !important,但在这种情况下是需要的(因为正在应用内联样式)。