Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Mozilla サポートの検索

サポート詐欺に注意してください。 私たちはあなたに通話やショートメッセージの送信、個人情報の共有を求めることはありません。疑わしい行為を見つけたら「迷惑行為を報告」からご報告ください。

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Why is my layout all wrong until I log into my site?

  • 4 件の返信
  • 1 人がこの問題に困っています
  • 24 回表示
  • 最後の返信者: cor-el

I have just upgraded from v3 to v4 of Firefox. Myself and other members are now having issues with the site layout.

If you use Firefox 4 and visit this site http://www.vwaudiforum.co.uk/forum/forum.php you should see the layout all wrong.... If you look in other browsers you will see what I mean.

Firefox 3 worked OK

I have just upgraded from v3 to v4 of Firefox. Myself and other members are now having issues with the site layout. If you use Firefox 4 and visit this site http://www.vwaudiforum.co.uk/forum/forum.php you should see the layout all wrong.... If you look in other browsers you will see what I mean. Firefox 3 worked OK

選ばれた解決策

You have a lot of B tags that aren't closed. Firefox 4 is much less forgiving in such a case and places all following content in those B tags and that causes Firefox to ignore the </form>. So everything is in that form and that causes the CSS rule mentioned above to be applied. You need to make sure that all tags are closed properly.


<div align="center"><b> Do you own a VAG related repair business? 

この回答をすべて読む 👍 0

すべての返信 (4)

Some of the elements have top and bottom padding in Firefox that they do not have in IE. There is a style rule that Firefox is applying to the forum rows that IE is not. The reason for the discrepancy is not obvious to me.

.notices li {

background: #fff0ae url(images/styles/GamerRed/style/noticeBG.gif) repeat-x left top;

font-size: 12px;

color: #4d5153;

padding:5px 10px;

margin-bottom:5px;

-moz-box-shadow: -2px 2px 2px ;

-webkit-box-shadow: -2px 2px 2px ;

box-shadow: -2px 2px 2px ;

text-align: left;

clear:both;

}

This forum focuses on end-user support. You can find more web development help on the mozillaZine Web Development board. Separate forum, separate registration. Please note the tips in the Sticky Post at the top of the forum before posting.

この投稿は jscher2000 - Support Volunteer により に変更されました

選ばれた解決策

You have a lot of B tags that aren't closed. Firefox 4 is much less forgiving in such a case and places all following content in those B tags and that causes Firefox to ignore the </form>. So everything is in that form and that causes the CSS rule mentioned above to be applied. You need to make sure that all tags are closed properly.


<div align="center"><b> Do you own a VAG related repair business? 

この投稿は cor-el により に変更されました

Excellent, thank you for the help.... I have added </b> to the end of the line above, and it seems to have cured it :)

Never though 4 characters could cause the problem...

Stuart

You're welcome.