Page width problems in firefox

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Post Reply
nickbrewer
Forum Members
Forum Members
Posts: 12
Joined: Tue Oct 31, 2006 11:28 pm

Page width problems in firefox

Post 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?
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Page width problems in firefox

Post 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;
nickbrewer
Forum Members
Forum Members
Posts: 12
Joined: Tue Oct 31, 2006 11:28 pm

Re: Page width problems in firefox

Post 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.
Post Reply

Return to “CMSMS Core”