0
我對這個基本問題表示歉意;一直試圖自己解決這個問題,但仍然失敗。the_content()wordpress創建不需要的頂部空間
1)每當我在div
或<h1
>之內添加the_content()
>,它會在頂部創建一個空格;我曾嘗試在markup
上添加margin:0; padding:0;
,其中包含the_content()
。
2)添加remove_filter('the_content', 'wpautop');
我的functions.php
標識愛張貼的來源,但它太長。但我想要的基本佈局如下所示。我只想刪除title
div和content
div之間的空格。
HTML -----------------------------------------------------
<div id="main">
<div id="title"> <?php the_author() ?> </div>
<div id="content"> <?php the_content(); ?> </div>
</div>
CSS -----------------------------------------------------
#title {
width:100%;
height:100%;
padding:0;
margin:0;
}
#content {
background:#dcdcdc;
width:100%;
padding:0;
margin:0;
}
#content h1 {
font-size:250%;
text-transform:uppercase;
padding:0;
margin:0;
}
結果是這樣的:
editted:
什麼是你的'#title'元素的CSS? – m90
我也試着加入'p,br {margin:0; padding0;}'但'content'頂部的空間仍然顯示;我甚至把所有'divs'放在我的標記上'margin:0;填充:0;'不知道這是否是一個錯誤。 –