将页面上的第二个 jquery Anys 滑块链接到不同的 CSS

发布于 2024-12-26 13:19:31 字数 247 浏览 1 评论 0原文

我正在尝试在一页上使用两个任意滑块。

我需要以不同的方式设计它们。

我似乎无法弄清楚如何调用第二个样式表而不导致第二个样式表完全覆盖第一个样式表。我正在处理的网站的 URL 是:

http://e4dv3.businesscatalyst.com/home.htm< /a>

I am trying to use two anything sliders on one page.

I need to style them differently.

I cannot seem to figure out how to call to a second style sheet without causing the second one to override the first one altogether. The URL for the site I am working on is:

http://e4dv3.businesscatalyst.com/home.htm

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

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

发布评论

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

评论(1

や三分注定 2025-01-02 13:19:31

给一个滑块 uniqe id 并在 css 中引用它:

即在第一个滑块周围放置一个

...

。那么您可以使用

#top div.anythingSlider .anythingControls ul a {
  background: url("../images/someotherimage.png");
}

覆盖默认图像和类,它仅适用于第一个滑块。

您可以查看 http://www.w3schools.com/css/css_grouping_nesting.asp有关嵌套的更多信息

give one slider uniqe id and reference that in your css:

i.e. put a <div id="top">...</div> around the first slider. then you can use

#top div.anythingSlider .anythingControls ul a {
  background: url("../images/someotherimage.png");
}

to override the default images and classes and it will only apply to the first slider.

You can check out http://www.w3schools.com/css/css_grouping_nesting.asp for more info on nesting

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