Different behaviour with IE6 & Mozilla
Different behaviour with IE6 & Mozilla
My web page http://www.pettistree.suffolk.gov.uk/newpettistreetwo/ displays as I would like it under IE6, but the submenus look different under Mozilla. Under Mozilla the submenus are 750px wide with text centred. Any ideas, please?
Chris G
The problem comes from the style sheet. I believe it is this line The other lines to do with tables may also do other things. I think you might have to make that a class if you must have it. If you remove that from the stylesheet the submenus on Netscape go back to normal size. As to the text being in different position, if you are making it all left, you might put text="left"; at the end of you menuStyle definition. Hope that helps.
Ruth
Code: Select all
TABLE {
MARGIN-LEFT: auto; MARGIN-RIGHT: auto
}
Ruth
Chris,
I made a mistake about the left for the text. It's align="left"; I don't know where I go the text bit.
As to the stylesheet problem. When you have differences between browsers, the first thing to check is the stylesheet. Usually, I remove it totally and see if the menu then functions OK. The menu is made up of tables, divs, spans etc, so stylesheets can cause some problem in different browsers, which can usually be solved by using class.
Ruth
I made a mistake about the left for the text. It's align="left"; I don't know where I go the text bit.

Ruth