2016-11-20 79 views
0

This is a Wordpresss site and I believe this is a theme issue that is causing the footer to stick to the top of the page.爲什麼我的網站頁腳卡在我的頁面頂部?

我找不出一個針對該問題的站點範圍的修復程序。我用過:

.l-footer { 
position:absolute; 
bottom:0; 
} 

它只是使頁腳完全消失。

+2

發佈您的所有HTML和CSS,編輯您的問題,並打CTRL + M和粘貼代碼,也可以鏈接到頁面 – mlegg

+0

@mlegg http://www.gravitytransformation.com/videos/ – Jb11281992

+0

@ Jb11281992請將適用的代碼/ html添加到您的帖子中。 – Jhecht

回答

0

嘗試position:relative,position:fixeddisplay:block也。一旦你找到了合適的人,請記下他們的工作方式,並查看他們所做的改變。

+0

糟糕 - 我身邊的可怕的錯誤。 – 0xA

+0

修復了錯誤。 – 0xA

+1

是的,他們也不工作。成功移動頁腳的唯一方法是使用position:absolute,然後使用margin-top:100%,但對於我的所有頁面而言並不一致 – Jb11281992

0

編輯:

試試這個:

.somefooter { 
    display:inline-block; 
    overflow: hidden; 
} 

通過我認爲他們應該做的,將它們放置在您的頁腳標籤。

+0

不幸的工作 – Jb11281992

相關問題