Galleria 模块 - 风格上衣:
我正在尝试针对 Drupal 7 优化我的 Galleria 模块。除了一件事之外,一切都很顺利。 标签直接添加了样式 - top: 50px。我认为它是用 JavaScript 添加的,但我找不到它!我尝试使用 Drupal 模板内的 CSS 和模块内的 CSS 来覆盖此样式,但仍然没有任何效果。我会用牙齿咬住它,因为我几天后就想把它去掉!
I'm trying to optimize my Galleria module for Drupal 7. Everything goes OK except one thing. <img>
tag has directly added style - top: 50px. I think its added with JavaScript but I can't find it! I've tried to override this style with CSS inside Drupal Template and inside module CSS's but still nothing. I'll bite it with my teeth cause I'm trying to remove it from a few days!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ie Firebug for FF 检查样式来自何处。 Firebug 为您提供了包含继承和重写规则的完整列表。您也许能够明白为什么您的风格没有被应用。
如果样式是由 JavaScript 添加的,那么它通常是标签本身的内联样式。您可以使用
top: 0 !important;
在 css 中覆盖它You can check, where the style is coming from using i.e Firebug for FF. Firebug gives you a complete list with inheritance and overriding rules. You may be able to see why your style wasn't applied.
If the style is added by JavaScript it's normally an inline style on the tag itself. You can override it in your css by using
top: 0 !important;