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?
			
			
									
						
										
						Page width problems in firefox
- 
				nickbrewer
- Forum Members 
- Posts: 12
- Joined: Tue Oct 31, 2006 11:28 pm
Re: Page width problems in firefox
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;
			
			
									
						
										
						max-width: 60em; /* IE wont understand these, so we will use javascript magick */
min-width: 60em;
width: 760px;
- 
				nickbrewer
- Forum Members 
- Posts: 12
- Joined: Tue Oct 31, 2006 11:28 pm
Re: Page width problems in firefox
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.
			
			
									
						
										
						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.


