2010-03-18 70 views
1

我不知道爲什麼這個頁面:http://wohf.squarespace.com/newsletter/在Safari瀏覽器的底部被切斷,似乎在所有其他瀏覽器中工作正常(據我發現迄今爲止)!底部的頁面在Safari中被切斷了

我正在使用一些jQuery和CSS的側邊欄和內容來匹配高度和帆布運行從上到下與頁腳總是在頁面的最底部。一切工作(據我所知,至今)在網站的其他部分,問題只在這個新聞簡報頁面,並只在Safari瀏覽器。

任何人都可以看到問題嗎?

這裏是我使用jQuery:

//*************************************** 
    // Position Elements on Newsletter Page 
    //*************************************** 
    // Clear previously specified heights 
    $("#modulePage6177253, #modulePage6177253 #canvasWrapper, #modulePage6177253 #canvas").height('auto'); 

    $("#moduleContentWrapper6177535").insertBefore("#modulePage6177253 #pageBodyWrapper"); 
    $("#moduleContentWrapper6177544").appendTo("#modulePage6177253 #pageFooterWrapper"); 
    $("#modulePage6177253 #pageFooterWrapper").insertAfter("#modulePage6177253 #canvasWrapper"); 

    equalHeight($("#modulePage6177253 #sidebar1, #modulePage6177253 #content")); 
    equalHeight($("#modulePage6177253, #modulePage6177253 #canvasWrapper, #modulePage6177253 #canvas")); 

    $("#modulePage6177253 #canvasWrapper").css("margin-bottom", "-100px"); 

function equalHeight(group) { 
    tallest = 0; 
    group.each(function() { 
     thisHeight = $(this).height(); 
     if(thisHeight > tallest) { 
     tallest = thisHeight; 
     } 
    }); 
    group.height(tallest); 
} 
+0

它不是爲我而切斷。 – Pointy 2010-03-18 03:45:37

+0

oooh!大!謝謝! 只是爲了跟進,左側欄底部文本中的最後一個單詞應該是「家庭」,底部應該有一個藍色背景頁腳,其中包含基本頁腳文本。 在Mac上使用Safari 4.0.3時對我來說是截斷的。但我還沒有找到其他地方的問題。 – VUELA 2010-03-18 03:52:22

回答

0

它在Firefox切斷了我,但看看你的CSS你有溢出:隱藏的風格無處不在。我會開始刪除這些。

+0

我剛剛通過並刪除了每一個我能找到的東西,並且它在safari中沒有幫助。你使用的是什麼版本的Firefox? mac或pc? – VUELA 2010-03-18 03:59:21

+0

看起來像我錯過了一個 - 讓我試着找到它。 – VUELA 2010-03-18 04:00:51

+0

PC,最新版本。 – 2010-03-18 04:03:19