开发者

Why isnt this page pulling up [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 11 years ago.

I have this page and in firefox it pulls u开发者_开发问答p fine but safari it doesnt...any ideas


I get a 404 for favicon but I think the error is infact the CSS rule on line 10.

<!-- padding-top: 0px;  

Where you trying to comment out that line? /* comment */ is what you're after.


This block at the top of your page has a HTML comment that isn't finished, thus commenting out the rest of your page.

    div.padded {  
    <!-- padding-top: 0px;  
    padding-right: 0px;  
    padding-bottom: 0px;  
    padding-left: 00px; 
    margin-top: 0px;  
    margin-right: 200px;  
    margin-bottom: 10px;  
    margin-left: 10px;   
    }

Change to

div.padded {  
        padding-top: 0px;  
        padding-right: 0px;  
        padding-bottom: 0px;  
        padding-left: 00px; 
        margin-top: 0px;  
        margin-right: 200px;  
        margin-bottom: 10px;  
        margin-left: 10px;   
        }
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜