2011-03-28 168 views

回答

0

WordPress是加載圖像到內容塊,我不認爲它你的CSS圖像是如何通過你的模板訪問

1

你的問題是在你的style.css的有機天然的避暑主題的662線。更改頁邊距爲0px,從這個打算:

#contenthome h1, #content h1 { 
    color: #333333; 
    font-size: 32px; 
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: bold; 
    text-transform: normal; 
    letter-spacing: -1px; 
    margin: 5px 0px 5px 0px; 
    padding: 0px; 
    line-height: 32px; 
    } 

要這樣:

#contenthome h1, #content h1 { 
     color: #333333; 
     font-size: 32px; 
     font-family: Arial, Helvetica, sans-serif; 
     font-weight: bold; 
     text-transform: normal; 
     letter-spacing: -1px; 
     margin: 0px; 
     padding: 0px; 
     line-height: 32px; 
     } 

注意:在使用開發工具爲Chrome測試。

+0

完美!非常感謝湯姆! – 2011-03-29 00:05:39

+0

很高興我能幫到你。如果這是你正在尋找的答案,如果你將其標記爲答案,我會很高興。 – TomHarrigan 2011-03-29 00:12:36