Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 4 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 2 views
  • Last reply by 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? 

Read this answer in context 👍 0

All Replies (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