So I started tweaking the html/css of this page. Nothing fancy as far as I can see.

Now it looks completely wrong in Firefox (see for yourself) and fine in every other browser I can think of. The html has been validated by the W3 tool. I am mystified, has anyone ever come across this before?

link|improve this question

1  
You need to clear floats on your menu. – Diodeus Oct 24 '11 at 22:25
1  
UPDATE: Thank you all for your prompt and entirely correct replies. I wouldn't have got that in a million years ;-). I've marked you all +1 and accepted the answer submitted by the person with the lowest rep. CSS is a fickle mistress. – 5arx Oct 25 '11 at 8:44
feedback

4 Answers

up vote 1 down vote accepted

You just need to clear the floats. Try adding this to your stylesheet:

table.layouttbl
{
    clear: both;
}

This might help too.

link|improve this answer
1  
Though this works, there is no reason to have the menu floating, this is adding a hack to counter a previous hack. – Juan Mendes Oct 25 '11 at 16:42
feedback

Try clearing the float you put on your menu.

<table cellspacing="0 " cellpadding="0" class="layouttbl" style="clear: left;">

You can put it in an actual style rule, or add another element and attach the clear to that instead.

link|improve this answer
feedback
  • Add overflow: hidden to .page class in Site.css (line 108)
  • Add a new property: .layouttbl {float: left}

This fixes your issues in firefox. Make sure to check the site in other browsers as well.

link|improve this answer
feedback

Your menu div has no need to float, remove float from that #divMenu. Be careful since you're defining #divMenu in 2 different places

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.