Page 1 of 1

Page width problems in firefox

Posted: Fri Nov 10, 2006 12:50 pm
by nickbrewer
My page is http://www.hornet.sparcc.org

in IE the page width includes all of the top menu buttons and looks fine.  it also does in Opera.

when i load the page in Firefox the width puts the last top menu button (contact) below all the others.

i know there is something simple to fix this, but i can't figure it out.

does anyone know a fix for this?

Re: Page width problems in firefox

Posted: Fri Nov 10, 2006 12:58 pm
by Dr.CSS
You have 2 calls for the width and IE can't understand the first part, Min/Max widths, so it uses the second Firefox is using the first calls, min/max take those out, and the IE fix in the head of the template, and it should work...

  max-width: 60em; /* IE wont understand these, so we will use javascript magick */
  min-width: 60em;

  width: 760px;

Re: Page width problems in firefox

Posted: Fri Nov 10, 2006 2:26 pm
by nickbrewer
all i did was change

  max-width: 60em; /* IE wont understand these, so we will use javascript magick */
  min-width: 60em;

to

  max-width: 62em; /* IE wont understand these, so we will use javascript magick */
  min-width: 62em;

in my stylesheet and it fixed the problem.

thanks for the help.