2014-12-04 75 views
0

我正在嘗試更改Wordpress主題中的頁面生成器橫幅(滑塊)高度。 它會讓我改變滑塊的寬度,但由於某種原因高度被凍結。下面的代碼是我改變寬度的地方,我會假設那裏的高度也會改變呢?在wordpress主題中更改滑塊高度製作

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

回答

0

嘗試覆蓋以前定義的高度屬性值,如下所示。

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或類。