如何使 jQuery Coda-Slider 居中?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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 thefloat:left
)将
float: left
从 css 中的 .coda-slider 中取出另外,为了使导航居中,您需要将浮动从
a
中取出,并添加text -align: center
到你的ulTake
float: left
off of .coda-slider in your cssAlso, to center the nav, you need to take the float off your
a
, and addtext-align: center
to your ul使用这样的东西:
Use something like this :