音量控制隐藏

发布于 2024-11-28 14:21:43 字数 279 浏览 1 评论 0原文

在我的 WordPress 网站上,我使用了一个手风琴插件,里面是我的 mediaelementjs 音频代码。我的问题是,当单击音量时,音量控件隐藏在手风琴后面。这是一个屏幕截图: http://i54.tinypic.com/35isyyt.png

这是网址:http://goo.gl/qmZoz

On my wordpress site i'm using an accordion plugin and inside it is my code for mediaelementjs audio. My problem is when click on the volume, the volume control is hidden behind the accordion. Here's a screenshot:
http://i54.tinypic.com/35isyyt.png

and here's the url: http://goo.gl/qmZoz

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼藏柔 2024-12-05 14:21:43

ID 为 the-accordion-content-1 的元素的 overflow CSS 属性设置为 auto。您需要将其设置为visible。类似的东西可能会起作用:

#thethe-accordion-content-1 {
    overflow: visible !important;
}

The element with ID thethe-accordion-content-1 has its overflow CSS property set to auto. You need to set it to visible instead. Something like that might work:

#thethe-accordion-content-1 {
    overflow: visible !important;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文