Click here to get back home

help with firefox issue

 HomeNewsGroups | Search | About
 comp.infosystems.www.authoring.html    Post an article   get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content
Subject Author Date
help with firefox issue jonlarosa 02-25-2008
Posted by jonlarosa on February 25, 2008, 11:41 am
Please log in for more thread options
Hi all,

(Apologies for any cross-postings)

I am having an issue with a navigation bar in firefox. At seemingly
random times, the nav bar will not appear in 1 line (as it should),
but will span 2 or more lines.

For example:
How the nav bar should look:
http://www.bostonhistory.org/img/menu/menu_OK.jpg
and how it sometimes appears:
http://www.bostonhistory.org/img/menu/menu_error.jpg

I cannot reproduce this error on demand. If you click around the nav
bar a bit on the actual site (http://www.bostonhistory.org/), you will
probably be able to reproduce the error, but it seems to be randomly
that it happens. We haven't seen this error at all in IE.

The CSS to display the nav bar is here:
http://www.bostonhistory.org/css/nav.css

And the html is here:
http://www.bostonhistory.org/inc/nav_code.phpp

I'm not really sure where the problem lies with this. I've tried a
few things with no luck. Anyone have any ideas? Anyone seen an issue
like this before? (not the browser-compatibility issue, I know we've
all seen _plenty_ of those :)

thanks in advance,
jon
jlarosa@tdcorp.org

Posted by Beauregard T. Shagnasty on February 25, 2008, 12:09 pm
Please log in for more thread options
jonlarosa@gmail.com wrote:

> (Apologies for any cross-postings)

This post was sent only to comp.infosystems.www.authoring.html
Cross-posting is ok, if necessary. Multi-posting is not.

> I am having an issue with a navigation bar in firefox.

May I suggest the following before you get much further?

1. Your choice of font size is way too small. When I increase it so I
can read it, the page falls apart. See:
http://k75s.home.att.net/fontsize.html

2. Since you already have sectional menus on the left side of the
content area, why not just drop the annoying fly-out drop-down menus?
Everything seems to be repeated, which will serve only to confuse your
visitors.
http://www.message.uk.com/index.php?page=81
http://maetl.coretxt.net.nz/problem-with-css-dropdown-menus

3. You have a lot of 'pixel-precision' settings in your CSS. Use em
units instead (for just about everything except borders), so your
content doesn't escape their boxes when I increase font size.

--
-bts
-Friends don't let friends drive Vista

Posted by jonlarosa on February 25, 2008, 12:34 pm
Please log in for more thread options
Thanks for the suggestions BTS, I will look into them.

Another thing I forgot to mention:
If you do get the nav bar to appear on multiple lines, clicking
"reload" will fix the issue. Weird.

jon
jlarosa@tdcorp.org

Posted by Stan Brown on February 26, 2008, 2:50 pm
Please log in for more thread options
Mon, 25 Feb 2008 17:09:11 GMT from Beauregard T. Shagnasty
> jonlarosa@gmail.com wrote:
>
> > (Apologies for any cross-postings)
>
> This post was sent only to comp.infosystems.www.authoring.html
> Cross-posting is ok, if necessary. Multi-posting is not.

Not to mention the fatuity of "for *any* crosspostings"!

Either he doesn't know what newsgroups he posted to, or he's
following the lead of airlines that cancel your flight and then
"apologize for any inconvenience", as though canceling your flight
could possibly *not* be an inconvenience.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/2003/05/05/why_we_wont_help_you

Posted by GTalbot on February 28, 2008, 7:40 pm
Please log in for more thread options
On 25 f=E9v, 11:41, jonlar...@gmail.com wrote:
> Hi all,
>
> (Apologies for any cross-postings)
>
> I am having an issue with a navigation bar in firefox. At seemingly
> random times, the nav bar will not appear in 1 line (as it should),
> but will span 2 or more lines.
>
> For example:
> How the nav bar should look:http://www.bostonhistory.org/img/menu/menu_OK.=
jpg
> and how it sometimes appears:http://www.bostonhistory.org/img/menu/menu_er=
ror.jpg
>
> I cannot reproduce this error on demand. If you click around the nav
> bar a bit on the actual site (http://www.bostonhistory.org/), you will
> probably be able to reproduce the error, but it seems to be randomly
> that it happens. We haven't seen this error at all in IE.
>
> The CSS to display the nav bar is here:http://www.bostonhistory.org/css/na=
v.css
>
> And the html is here:http://www.bostonhistory.org/inc/nav_code.phpp
>
> I'm not really sure where the problem lies with this. I've tried a
> few things with no luck. Anyone have any ideas? Anyone seen an issue
> like this before? (not the browser-compatibility issue, I know we've
> all seen _plenty_ of those :)
>
> thanks in advance,
> jon
> jlar...@tdcorp.org



You should first start with markup and css validation:

140+ errors:
http://validator.w3.org/check?uri=3Dhttp://www.bostonhistory.org/?s=3Dneighb=
orhoods
http://validator.w3.org/check?uri=3Dhttp://www.bostonhistory.org/?s=3Dlibrar=
ymuseum

http://jigsaw.w3.org/css-validator/validator?uri=3Dhttp://www.bostonhistory.=
org/?s=3Dneighborhoods

I checked your css rules and css declarations and you definitely over-
excessively code, declare, define, etc.. Your css code is way too big
and way too over-constraining, everywhere, also pixel-precise
constraints everywhere.

First start with validation and then try to remove CSS declarations
and CSS rules, not add.

HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/2003/05/05/why_we_wont_help_you


=2EBodyText {
font-size : 0.8em;
font-family : geneva, verdana, helvetica, arial;
}

This is a serious mistake.
"Avoid sizes in em smaller than 1em for text body, except maybe for
copyright statements or other kinds of 'fine print.'"
W3C Quality Assurance tips for webmasters:
Care with Font-Size
http://www.w3.org/QA/Tips/font-size

Truth or consequences in web design:
Font-Size
http://pages.prodigy.net/chris_beall/TC/Font%20size.html

Regards, G=E9rard

Similar ThreadsPosted
Help with Firefox margin issue August 30, 2005, 5:26 pm
Firefox/IE7 display issue September 17, 2007, 4:53 pm
Netscape/Firefox image display issue February 21, 2006, 2:50 pm
Robots.txt issue January 13, 2005, 12:02 pm
help with design issue May 31, 2005, 8:17 am
Frameset issue October 28, 2006, 3:28 pm
Issue January 24, 2008, 7:18 pm
Accessibility issue - onKeyDown November 15, 2004, 2:53 pm
mailto & display name issue July 21, 2006, 10:48 am
Safari issue with self.close February 28, 2007, 12:51 pm

Our other projects:

Art Dolls, Fairies and Mermaids - Sunnyfaces.net

Roy's Linux, Programming and Search Engines messages

1-Script XML SitemapXML Sitemap