我如何将内容元素与WordPress自定义CSS保持一致



我试图将图像轮播在WordPress网页中对齐。我从面板菜单中尝试了自定义CSS中的代码,它对我不起作用:

.cleaning_carousel {width:50%!保证金:0px auto!重要;}

要查看相关网站,请访问https://livingwatersict.com/ponds/

有人可以指出我正在犯的错误吗?

您可以尝试这样的东西,使外部div并使用CSS text-align:center

.outer
{
text-align:center;
}
.inner
{
width:300px;
height:auto;
}
<div class="outer">
<img src="http://www.team-bhp.com/forum/attachments/travelogues/412228d1282577980-taj-mahal-full-moon-fatehpur-sikri-mathura-bharatpur-keoladeo-national-park-img_9119_20_21_tonemappedb.jpg" class="inner">
</div>

最新更新