我已經修改了一個非常大幅度的wordpress主題來創建我的新網站的第一個版本。我試圖擺脫這個1px的虛線邊框,但不能爲我的生活找到它是在哪個元素上。 ARG!這個虛線邊框來自哪裏?
該網站是http://dev.timelesscreations.us,我所說的虛線邊框位於側欄下方,右上方是頁腳。
謝謝!
我已經修改了一個非常大幅度的wordpress主題來創建我的新網站的第一個版本。我試圖擺脫這個1px的虛線邊框,但不能爲我的生活找到它是在哪個元素上。 ARG!這個虛線邊框來自哪裏?
該網站是http://dev.timelesscreations.us,我所說的虛線邊框位於側欄下方,右上方是頁腳。
謝謝!
its in style.css line 62
#content
{
background: url("images/bk_content.png") repeat-y scroll 100% 0 transparent;
}
just REMOVE that property
background: url("images/bk_content.png") repeat-y scroll 100% 0 transparent
from #container css
cheers
它是由您的樣式這個CSS規則引起的:
#footer {
....
border-top: 1px dotted #000;
....
}
元素:
<div id="footer"> .... </div>
使用Firefox Firebug插件或Chrome開發人員工具(F12)找到它。
in style.css at 144 line your dotted border seted on #footer。刪除。
你贏了!非常感謝!頭痛得到治癒 –