fullCalendar 字体大小
我在将日历字体大小设置得较小时遇到问题。
我已经更改了容器div字体大小的设置,没有效果。
我还将 fullCalender.css 字体从 1em 更改为 0.5em 并更改为 px 大小,但日历文本保持不变。
I am having issues setting the calendar font sizes to be smaller.
I have changed setting a container div font size, no effect.
I have also changed the fullCalender.css font from 1em to 0.5em and to a px size but the calendar text stays the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
备查:
For future reference:
在 FullCalendar 中添加“主题”设置。
通过编辑 FullCalendar 提供的 CSS 文件来添加自定义主题 CSS,http://arshaw.com/js/fullcalendar-1.6.1/demos/cupertino/theme.css
注意:演示在这里 http://arshaw .com/js/fullcalendar-1.6.1/demos/theme.html
Add the 'theme' setting in FullCalendar.
Add your Custom themed CSS by editing the FullCalendar provided CSS file, http://arshaw.com/js/fullcalendar-1.6.1/demos/cupertino/theme.css
Note: Demo is here http://arshaw.com/js/fullcalendar-1.6.1/demos/theme.html
我可以用以下方法解决这个问题
I could solve that problem with the following
这是过去的一次爆炸,但我最初发现这个是为了寻找解决方案。
我只想更改表中元素的字体大小(日期标题、时间侧边栏)。以下内容对我有用:
我使用 Opera Dragonfly 来查找元素类(CTRL+SHIFT+i -> 将鼠标悬停在元素上),但任何 DOM 检查器都应该这样做。
This is quite the blast from the past, but I originally found this looking for a solution.
I just wanted to change the font size of the elements in the table (date headers, time sidebar). The following worked for me:
I used opera dragonfly to find the element class (CTRL+SHIFT+i -> Hover over element), but any DOM inspector should do.
尝试使用
!important
这是一个 CSS 规则来遵守该规则并忽略其他规则。例如:
在 CSS 中:
在 jQuery 中:
try and use
!important
which is a CSS rule to obey that rule and ignore others.e.g:
in CSS:
in jQuery:
更改除 Modals 、 addevent 和 edit event 之外的常规字体大小 (fullcalendar.css)
Change general font size (fullcalendar.css) except Modals , addevent and edit event
我已经找到原因,不确定为什么会导致问题,但是当我没有声明文档类型时,因为
它不会改变字体大小。
谢谢
I have found the cause, not sure why this is causing the issue but when I didn't declare the document type as
it wouldn't change the font size.
Thanks