Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

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

  • 4 відповіді
  • 1 має цю проблему
  • 2 перегляди
  • Остання відповідь від cor-el

more options

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)

more options

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

more options

Вибране рішення

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

more options

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