Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个正在开发的 WordPress 网站,似乎有一个我找不到的 CSS 问题。我安装了插件AJAX 事件日历并将其短代码[calendar]放在页面编辑器中。这按预期工作,但有些东西将日历向下推到 400 多像素附近。我检查了所有包含的 div,以及日历 div。我在控制台中也没有看到任何错误。我似乎无法找到是什么推动了它。
[calendar]
有问题的页面可以在这里看到。
in your custom.css file fix this:
#aec-container { position: relative; float: none; }
with this:
#aec-container { position: relative; float: left; }
i tried and it works.