Submit your pages to the W3C HTML validatoe, then fix your errors.
Belly aching without offering a URL for independant testing is rude.
--
Ron K.
Who is General Failure, and why is he searching my HDD?
Kernel Restore reported Major Error used BSOD to msg the enemy!
I have half a dozen websites that I've created and managed in MS FrontPage for many years. Yes, I know FrontPage is antiquated and generates sloppy code, but it's a great tool for non-coding folks like me. Until now, I've had no problem with viewing my pages in FF, but now that I've upgraded to FF3, problems are proliferating. For instance, near the top of this page, I've got a bulleted list, but in FF3, the bullets appear halfway across the page, in the middle of the sentences! This means millions of Firefox users around the world won't be able to see my pages correctly, and that pisses me off. If the FF3 developers are trying to reduce user loyalty, they're off to a great start. I certainly won't continue to promote FF if it's going to damage my own business interests.
That's one of the reasons M$ discontinued FrontPage in 2006.
It uses non-standard code that only M$'s non-standard browser (IE) could
read. Even IE8 will have problems unless the code is amended.
--
wtwjgc (Joe)
There are lots of errors there. I didn't take the time to try to figure
out which style entry is causing the problem, but when I disable the
inline styles, the bullets move to the beginnings of the lines. It
could be that your <ul> style and your <p> style inside the <ul> are
conflicting with one another. Try dumping the <p> tags inside the <li>
tags and putting the style="margin-top: 6px; margin-bottom: 0;
text-align:left" inside the <li> tags. Since you only have one
paragraph inside each <li> you don't need the paragraph tags.
My 2 cents...
Dave Pyles
Microsoft's page,
http://www.microsoft.com/expression/products/overview.aspx?key=web says
that Expression Web is highly standards compliant. Then I clicked on
the FAQ link from that page and tried to click on the first Question:
"What is Microsoft Expression Web 2?". Nothing happened! Nothing
happens if I click on any of the questions, nor on the "Expand All" link.
However those links on the FAQ page don't do anything in IE either!
Either they haven't finished developing it yet, or they haven't mastered
their own tool. ;-)
Bernie
Display is fine here.
Also looks fine in Seamonkey Gecko/2008070902 SeaMonkey/2.0a1pre and
FF3. Does FF3 for Windows have an error console under the Tools tab?
Here it indicates a lot of unknown directives being ignored.
Rinaldi
--
Do you have lysdexia?
Not that I know of. Have you tried clearing your cache? Starting in FF's
safe mode?
Wow! Lots, indeed!
I'm seeing the bullets centered in Fx3, as well.
--
Sailfish - Netscape/Mozilla Champion
Netscape/Mozilla Tips: http://www.ufaq.org/ , http://ilias.ca/
Rare Mozilla Stuff: http://www.projectit.com/
On line 90 the tag <td style="text-align: center;"> is trying to control
the alignment of everything inside the table cell that contains the
problem tag bullets.
In each subsequent <p> tag there is a declared in-line style that causes
the text to align left (<p style="margin-top: 0px; margin-bottom: 0;
text-align:left">) so those tags override the style in the <td> tag,
that is until we get to the <ul><li><p> tags on lines 140, 141 and 142
which are written as:
Line 140: <ul style="margin-top: 9; margin-bottom:0">
Line 141: <li>
Line 142: <p style="margin-top: 6px; margin-bottom: 0; text-align:left">
Since the <td> tag is still trying to center align all of the text in
the cell it aligns the bullets in the center of the page because is
nothing in the <ul> or <li> to tell it to do otherwise. The next place
there is a an alignment style change in in the <p> tag inside the <li>
so the paragraph is aligned left. The same CSS error is repeated in
each of the subsequent <li>s in the table cell. The "text-align:left"
needs to be in either the <ul> or in the <li> to override the
"text-align: center;" in the containing <td>.
There is a reason that it is called "cascading" styles. Maybe Firefox
3's quirks mode should be a little more forgiving of bad coding, but it
is rendering the code that it is being given as it should.
Dave Pyles
I sent that all for the benefit of the folks who were saying they didn't
know what was causing the problem.
Pages produced by FP are notorious for bad code. They make code that
works OK in IE, but all the versions of Firefox have had trouble with
some of FPs quirks. When I'm coding web sites, I always code for
Firefox no matter what the default preview browser in the HTML software.
I save the pages as I am adding things and load them into Frefox so
see how they look. If it looks right in Firefox, it will look right in
any browser.
Learning to code HTML is pretty easy. If you are maintaining numerous
web sites you should learn to do that. One easy way to learn the
rudiments is to make some pages in your favorite WYSIWYG editor then
play around with the source code.
For Firefox, there is a "Web Developer Toolbar" add-on. I found the
problems in your page by using that and modifying the html. You can
download it here https://addons.mozilla.org/en-US/firefox/addon/60 or
here http://chrispederick.com/work/web-developer/ I don't know how I
ever managed without it.
Dave Pyles
I confirmed what David suggested earlier that it was the <P ...></P>
tags within the <LI></LI> tags that was causing the problem. To get
around it, I simply moved the <P style="..."> inline style attributes
from the <P> tags into the preceding <LI> tags and simply removed the <P
...></P> tags within the <UL></UL> list tags and the bullets displayed
as expected.
gl
--- Original Message ---
Don't understand it here either as in my FF3 they look just they look
for you.
--
Jay Garcia - Netscape/Flock Champion
www.ufaq.org
Netscape - Flock - Firefox - Thunderbird - Seamonkey Support
but the question is why do they look alright in
FF2.0.0.15, SM 1.1.10, Safari 3.1.1, IE7, and Opera
9.51, but they don't work for FF3? What changed in FF3?
--
*IMPORTANT*: Sorry folks, but I cannot provide email
help!!!! Emails to me may become public
Notice: This posting is protected under the Free Speech
Laws, which applies everywhere in the FREE world,
except for some strange reason, not to the mozilla.org
newsgroup servers, where your posting may get you banned.
Peter Potamus & His Magic Flying Balloon:
http://www.toonopedia.com/potamus.htm
What, specifically? Sorry, dunno.
I love that web developer toolbar and have used it extensively. What I
have found even more valuable is the Firebug add-on. I have used it so
much that I can't imagine developing without it.
Lou
I just looked at your page again. The tag on your display line 597 was
the right one to put the align="center" into. I see it there now.
The <td style="text-align: center"> which now appears in my display on
line 100 needs to have the style="text-align: center" removed. This is
the <td> that controls the text beginning "An exciting day of learning,
networking,". That is the one that is causing your bullets to be in the
center and your text not to align properly.
Anyway, it should be fixed when you upload the file I sent you.
Dave
I expect FF3 and SM2 have removed Quirks mode and now following the
rules strictly now since Web designer and the Like have had more than
enough time to get with the program. Even MS has finally got their act
together and IE8 will work more like Mozilla products. It still may be
capable of using active-X (which is one of the most dangerous code on
the planet) but otherwise will follow more closely W3C standards.
--
------------------------------------------------------------------------
Phillip M. Jones, CET http://www.vpea.org
If it's "fixed", don't "break it"! mailto:pjo...@kimbanet.com
http://www.kimbanet.com/~pjones/default.htm
Mac G4-500, OSX.3.9, 1.5GB Mac 17" PowerBook G4-1.67 GHz, 2 GB OSX.4.11
------------------------------------------------------------------------
It's not the first time I've heard disparaging epithets about FP, but
personally I don't know as it's not something I use, but it does beg a
question.
If FrontPage is so much Poo, why worry if a superior product like Firefox3
won't play with it, perhaps the Ff folks know something. ;-)
Dave S
--
> I expect FF3 and SM2 have removed Quirks mode
Fx 3 still has quirks mode (and uses it to display that page). I'd be
surprised if it's been removed from SeaMonkey trunk builds.
> Storm has written on 7/12/2008 12:16 PM:
>> You're right: I made reference to a page in my post, and then forgot
>> to paste it in. Sorry about that. Here it is:
>> http://www.resolutionfund.com/Seminars.html
>>
>
> Display is fine here.
>
I'll confirm that the page displays fine with the bullets on the left
where I'd expect to see them. Whole page looks fine. FF3
--
Mike "Rocket J Squirrel" Elliott
--- Original Message ---
That's because the page has been in fixed in the meantime. :-)
Ditto here. FF3 with Adblock Plus 0.7.5.5, Live HTTP Headers 0.14. XP SP2.
No settings for FrontPage were changed that I know of -- at least not
intentionally.
--- Original Message ---
For whatever reason, you haven't followed the discussion closely. The
problem was fixed by the author a day or so ago, so yes it works.
f'up set to .general