1

我在一个主题上安装了这个插件。这个主题有一个滑块,但我不喜欢它。所以我安装了这个。

http://wordpress.org/extend/plugins/content-slide/

我试过用这个

#wpcontent_slider_container{
position:relative;
margin: 0 auto;
}

和这个

#wpcontent_slider_container{
position:relative;
margin-left:auto;
margin-right:auto;
}

什么也没有发生。

我必须在div中放一些东西吗?

4

7 回答 7

2

我有同样的问题。这就是我解决它的方法:

#wpcontent_slider_container {
margin-left: auto !important;
margin-right: auto !important;
}

#wpcontent_slider {
/* Your styling here */
}

如果没有“!重要”的东西,CSS 对我也不起作用。

于 2013-10-16T20:17:37.630 回答
2

改变宽度

#wpcontent_slider_container{
    width: 500px;
    margin:0 auto;
}
于 2012-06-06T12:15:06.750 回答
1

#wpcontent_slider_container's父元素中添加

text-align:center;

居中对齐你的#wpcontent_slider_container

于 2012-06-06T12:15:58.277 回答
1

如果您知道滑块的宽度,那么当中心对齐很顽固时,这里有一个对我有用的小修复。

#sliderDiv{
   position:relative;
   left:50%;
   margin-left:-(half the width of the div);
  (ex. if div is at 500px it would be margin-left:-250px;)
 }

它不漂亮,但它有效。不过,您可能必须隐藏外部容器的水平溢出。

于 2012-06-06T21:22:03.837 回答
0
#wpcontent_slider_container{
text-align: center;
}

或使用<center> 标签

于 2012-06-06T12:16:29.663 回答
0

最后,我可以解决我网页中滑块 ubication 的问题。

只需修改style.css, .main_img { float:left; margin:15px 10px 0 60px}, 更改值。

于 2014-02-09T23:28:20.990 回答
0

在 auto !important 上使用 'margin-right' 和 'margin-left' 也对我有用。即使不使用 !important 命令,它实际上也可以工作。

于 2017-03-19T06:04:58.833 回答