我讀過幾個論壇,但我必須錯過一些東西。我基本上只是試圖讓我的CSS在某些頁面上有某些東西。基本上我想改變主頁爲圖片的全寬。如何讓CSS只在特定的WordPress頁面上工作?
我的孩子主題是我的CSS是這樣的。
.site-content,
.fl-builder.home .page-section,
.front-page-widgets,
.breadcrumbs {
width: 1640px;
max-width: 100%;
margin: 0 auto;
}
.site-footer-area {
width: 1640px;
max-width: 80%;
margin: 0 auto;
}
現在的問題是我所有的網頁,因爲max-width
是100%,一切都觸摸屏幕的邊緣。我只想要這個主頁。我檢查了主頁,並從該
<body id="top" class="admin-bar home is-singular logged-in page page-id-481 page-template page-template-_fullwidth page-template-page-template page-template-page-template_fullwidth-php customize-support">
我假設我page-id
是481的主頁。
什麼是最好的方法來解決這個問題,以便我的其他網頁是正常的?
班'家'不是一個更好的候選人嗎? – Boaz
嘗試添加一個包含div的類到您想要更改的每個頁面 – pQuestions123