gpt4 book ai didi

css - 在 wordpress 主题中更改 slider 高度

转载 作者:行者123 更新时间:2023-11-28 08:52:06 31 4
gpt4 key购买 nike

我正在尝试更改 Wordpress 主题制作中的页面构建器横幅( slider )高度。它会让我改变 slider 的宽度,但由于某种原因,高度被卡住了。下面的代码是我更改宽度的地方,我认为这也是要更改高度的地方?

    .builder-banner-slide {
position: relative;
z-index: 1;
width: 100%;
height: 0;
background-repeat: no-repeat;
background-position: center center;
background-size: cover; }

最佳答案

尝试覆盖之前定义的高度属性值,如下所示。

height: 0!important; /* Adjust as needed */
overflow: hidden!important; /* Hide whatever part that goes beyond the given height */

您的代码现在如下所示

 .builder-banner-slide {
position: relative;
z-index: 1;
width: 100%;
height: 0!important; /* Adjust as needed */
overflow: hidden!important; /* Hide whatever part that goes beyond the given height */
background-repeat: no-repeat;
background-position: center center;
background-size: cover; }

注意:如果上面的方法没有做到,请检查包含元素的 ID 或类是否正确。

关于css - 在 wordpress 主题中更改 slider 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27300920/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com