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

Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Kuaave

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

  • 4 Mbohovái
  • 1 oguereko ko apañuái
  • 24 Hecha
  • Mbohovái ipaháva 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

Ñemoĩporã poravopyre

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? 

Emoñe’ẽ ko mbohavái ejeregua reheve 👍 0

Opaite Mbohovái (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.

Moambuepyre jscher2000 - Support Volunteer rupive

Ñemoĩporã poravopyre

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? 

Moambuepyre cor-el rupive

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.