2012-10-30 24 views

回答

2

你是絕對的定位,但不知道在哪裏定位。將邊距更改爲位置。因此,而不是:

a#logo, #logo-text { position: absolute; margin-top: 25px; margin-left: 5px; } 

嘗試

a#logo, #logo-text { position: absolute; top: 25px; left: 5px; } 
+0

這固定它的權利了。回想起來,我排除這件事很愚蠢,但我認爲我的眼睛習慣於掃描那條線,所以我沒有看到錯誤。謝謝! –

+0

我的榮幸。有時你只需要一雙額外的眼睛。 – Brenda

0

在第40行的template.css,改變這種:

margin-left: 5px; 

這樣:

left: 5px; 

正如一個側面說明,如果你使用Firefox,我會推薦下載螢火蟲如果發生這種情況,你可以使用CSS。

相關問題