我已经搜索了 WordPress 支持论坛以及此处,但无法弄清楚为什么标题在 FullCalendar 上不可见。我相信它在 fc-header-center 中,但我可能是错的 - 我在那里搜索的所有内容看起来都正确,但没有任何显示。
这是我正在开发的网站。我非常感谢您提供的任何帮助。
谢谢!泰伦
我已经搜索了 WordPress 支持论坛以及此处,但无法弄清楚为什么标题在 FullCalendar 上不可见。我相信它在 fc-header-center 中,但我可能是错的 - 我在那里搜索的所有内容看起来都正确,但没有任何显示。
这是我正在开发的网站。我非常感谢您提供的任何帮助。
谢谢!泰伦
There's a CSS style on the page that sets the opacity of <h2>
elements to 0, and that's the reason that the title doesn't appear.
It seems to be the last line in this script on your page who's guilty:
<script type="text/javascript">
/* <![CDATA[ */
var imageResize = "timthumb",
resizeDisabled = "",
assetsUri = "http://csiainc.org/newsite/wp-content/themes/infocus/images/assets",
imageNonce = "6f8a12c74f",
disableSlidemenu = "false",
prettyphotoTheme = "pp_default",
imagePadding = "10",
responsiveSite = "false";
document.write('<style type="text/css">.noscript{visibility: hidden;}.ie .noscript{visibility: collapse;}.noscript_dn{display: none;}h1,h2,h3,.additional_posts_module h4,h4,h5,.logo a,.call_to_action,#intro .intro_title,#intro .teaser,#slider_module+#intro h3,#sidebar .widgettitle,#outro,#outro a,#footer .widgettitle,.toggle a,.toggle_accordion a,#content .teaser{opacity: 0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";}</style>');
/* ]]> */
</script>