如何使 jQuery Coda-Slider 居中?

发布于 2024-11-29 07:09:27 字数 251 浏览 1 评论 0原文

我正在使用 Coda-slider 作为 jQuery 滑块插件,并且我正在为某人制作一个网站。我遇到了一个问题: http://texting2web.co.cc 忽略域名,我正在等待我的 TLD 正确更改为我的新服务器:P

无论如何,正如您所看到的 codaslider 未居中。我已经尝试了一切,但没有任何效果。我还希望底部的指示点也居中。非常感谢任何帮助。

I am using Coda-slider as a jQuery slider plugin, and I am making a website for somebody. I ran past a problem:
http://texting2web.co.cc
Ignore the domain, I am waiting for my TLD to properly change to my new server :P

Anyways, as you can see the codaslider isnt centered. I have tried everything but nothing works. I also want the idicator dots on the bottom to be centered too. Any help is greatly appreciated.

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

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

发布评论

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

评论(3

梦幻的味道 2024-12-06 07:09:27

slider.css 第 8 行表示 float:left 代表 .coda-slider

删除它后,您还需要为 .coda-slider 添加 margin:0 auto

正如您所想的,给出 ul < code>text-align: center 也将点居中(同时删除了 float:left

line 8 of slider.css says float:left for .coda-slider.

After removing that, you'll also want to add margin:0 auto for .coda-slider

As You figured out, giving the ul text-align: center centered the dots as well (also removing the float:left)

疾风者 2024-12-06 07:09:27

float: left 从 css 中的 .coda-slider 中取出

另外,为了使导航居中,您需要将浮动从 a 中取出,并添加 text -align: center 到你的ul

Take float: left off of .coda-slider in your css

Also, to center the nav, you need to take the float off your a, and add text-align: center to your ul

怀里藏娇 2024-12-06 07:09:27

使用这样的东西:

<div class="wrapper" align="center">
  <img src="<? echo "images/". $i .".jpg" ;?>" alt="temp"/>
</div>

Use something like this :

<div class="wrapper" align="center">
  <img src="<? echo "images/". $i .".jpg" ;?>" alt="temp"/>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文