473,761 Members | 6,001 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Cross platform HTML (IE not following standards?)

Hi, I am here to request support from anyone that has idea's on
cross-browser HTML (Mainly Firefox and IE).

My personal website http://trammel.no-ip.info works fine on Firefox but IE
decides to crush the left table (ingnoring that there is no breakable
spaces).

I tried using nowrap already and IE still forces a wrap of the text in the
menu... thats why I tried using non-breaking spaces instead of normal
ones... so there was nowhere to break (however IE still takes no notice and
wraps it).

Anyone got any idea's on a fix that would work for both browsers (Firefox
already works)?
Thanks in advance for you time & for reading this post.
Jul 24 '05 #1
22 2472
Tim
On Sun, 03 Apr 2005 06:46:16 GMT,
"Trammel" <Me@Server.co m> posted:
Hi, I am here to request support from anyone that has idea's on
cross-browser HTML (Mainly Firefox and IE).

My personal website http://trammel.no-ip.info works fine on Firefox but IE
decides to crush the left table (ingnoring that there is no breakable
spaces).

I tried using nowrap already and IE still forces a wrap of the text in the
menu... thats why I tried using non-breaking spaces instead of normal
ones... so there was nowhere to break (however IE still takes no notice and
wraps it).


You have a peculiar array of non-breaking space indented text and nested
tables which I don't really want to even consider advising *much* about,
other than it's not a brilliant thing to do, and that nested lists (which
they are) with suitable CSS rules for indenting and other styling, is
probably better.

However, the wrapping problem that I can see with MSIE is at the hyphens,
not anywhere that you've used &nbsp; between words. MSIE is like that, it
does annoying and/or stupid things.

You can try putting nowrap as an attribute into the table cell [1], though
it's a deprecated technique and mightn't work in all situations. You can
apply a "white-space: pre" CSS style rule [2] in whatever element you don't
want to wrap, and that'll probably work in more situations.

1: e.g. <td nowrap>somethin g that's wrapping</td>
2: e.g. <td style="white-space:pre;">som ething that's wrapping</td>

--
If you insist on e-mailing me, use the reply-to address (it's real but
temporary). But please reply to the group, like you're supposed to.

This message was sent without a virus, please delete some files yourself.
Jul 24 '05 #2
Trammel wrote:

Hi, I am here to request support from anyone that has idea's on
cross-browser HTML (Mainly Firefox and IE).

My personal website http://trammel.no-ip.info works fine on Firefox but IE
decides to crush the left table (ingnoring that there is no breakable
spaces).

I tried using nowrap already and IE still forces a wrap of the text in the
menu... thats why I tried using non-breaking spaces instead of normal
ones... so there was nowhere to break (however IE still takes no notice and
wraps it).

Anyone got any idea's on a fix that would work for both browsers (Firefox
already works)?
Thanks in advance for you time & for reading this post.


I usually say this in defense of Mozilla and Firefox, but in this
case it will be in defense of IE. Your page is non-standard.

<URL:http://validator.w3.or g/> reports 84 HTML 4.01 errors.
<URL:http://jigsaw.w3.org/css-validator/> reports 2 style-sheer
errors.
<URL:http://webxact.watchfi re.com/ScanForm.aspx> reports 22
instances of violations of WAI WCAG-1 Level A (the least
restrictive level for judging accessibility for the handicapped).

With the detected bugs in the Web page, it is not possible to
determine whether IE or the page itself is at fault.

--

David E. Ross
<URL:http://www.rossde.com/>

I use Mozilla as my Web browser because I want a browser that
complies with Web standards. See <URL:http://www.mozilla.org/>.
Jul 24 '05 #3

"Trammel" <Me@Server.co m> wrote in message
news:Yi******** ***********@fe1 .news.blueyonde r.co.uk...
Hi, I am here to request support from anyone that has idea's on
cross-browser HTML (Mainly Firefox and IE).

<snip>

You have too many unnecessary tables. Plus, IE displays tables better when
they are nested. You shouldn't leave tables floating like you do. Some of
yours are nested, but most are not. And there are much better ways to build
that navigation bar. Here's a free one: http://www.coffeecup.com/free-dhtml/

Have you set all your table borders to "1" just to see what your page
structure looks like? Have you ever used transparent .gifs as spacers? They
work well to control page layout. They, too, should be used sparingly.

Carla
Jul 24 '05 #4
Thanks for the links to validators... they helped a little to tidy my pages
code... but I didnt ask for help tidying it up by adding "Alt's" to links
and "px" after the CSS width's :¬/

I modifed the CSS to add "px" after the pixel widths however... so no moew
CSS errors
....and the only HTML errors are things like "Background is not valid in TD"
which is obviously wrong as its working in both IE & Firefox...
....and most of it is "errors" that I didnt bother putting Alt's for 1-pixel
images... OMG! How could I be so careless with my 1x1 pixel images?!?!!!?!

Im guessing from the amount of people complaining about not liking nested
tables & pointing out stupid error-logs from "validators " that I dont use
ALT tags in images (and other unrelated rubbish) that nobody here knows a
fix to stop IE from crushing a table that it shouldn't?

And frankly... there wont be any disabled people visiting my personal
webpage so I dont give a flying f*ck if they cant read the ALT tags for 1x1
pixel images!

If you dont have a fix then PLEASE dont post shite from "validators " that
say my code wont work because of things like no "Alt" tags in images >:¬O

If you hadn't gathered.... ALT tags and all the other rubbish returned as
"errors" are either false (like saying there is no background option in the
TD element.... which DOES work to show images) or aren't even errors and
intentionally left out (like ALT tags)...
....and no... none of that has ANY relevance to the table crushing by itself
in IE!!!!
To anyone reading this: Sorry... irrelevant "errors" being pointed out to
me just because someone is unable to help kinda got me pissed :¬/


"David Ross" <no****@nowhere .not> wrote in message
news:42******** *******@nowhere .not...
Trammel wrote:

Hi, I am here to request support from anyone that has idea's on
cross-browser HTML (Mainly Firefox and IE).

My personal website http://trammel.no-ip.info works fine on Firefox but IE decides to crush the left table (ingnoring that there is no breakable
spaces).

I tried using nowrap already and IE still forces a wrap of the text in the menu... thats why I tried using non-breaking spaces instead of normal
ones... so there was nowhere to break (however IE still takes no notice and wraps it).

Anyone got any idea's on a fix that would work for both browsers (Firefox already works)?
Thanks in advance for you time & for reading this post.


I usually say this in defense of Mozilla and Firefox, but in this
case it will be in defense of IE. Your page is non-standard.

<URL:http://validator.w3.or g/> reports 84 HTML 4.01 errors.
<URL:http://jigsaw.w3.org/css-validator/> reports 2 style-sheer
errors.
<URL:http://webxact.watchfi re.com/ScanForm.aspx> reports 22
instances of violations of WAI WCAG-1 Level A (the least
restrictive level for judging accessibility for the handicapped).

With the detected bugs in the Web page, it is not possible to
determine whether IE or the page itself is at fault.

--

David E. Ross
<URL:http://www.rossde.com/>

I use Mozilla as my Web browser because I want a browser that
complies with Web standards. See <URL:http://www.mozilla.org/>.

Jul 24 '05 #5
Gazing into my crystal ball I observed "Trammel" <Me@Server.co m> writing
in news:yX******** **********@fe3. news.blueyonder .co.uk:

Top posting fixed. The response is at the bottom.


"David Ross" <no****@nowhere .not> wrote in message
news:42******** *******@nowhere .not...
Trammel wrote:
>
> Hi, I am here to request support from anyone that has idea's on
> cross-browser HTML (Mainly Firefox and IE).
>
> My personal website http://trammel.no-ip.info works fine on Firefox
> but IE decides to crush the left table (ingnoring that there is no
> breakable spaces).
>
> I tried using nowrap already and IE still forces a wrap of the text
> in the menu... thats why I tried using non-breaking spaces instead
> of normal ones... so there was nowhere to break (however IE still
> takes no notice and wraps it).
>
> Anyone got any idea's on a fix that would work for both browsers
> (Firefox already works)?
> Thanks in advance for you time & for reading this post.
I usually say this in defense of Mozilla and Firefox, but in this
case it will be in defense of IE. Your page is non-standard.

<URL:http://validator.w3.or g/> reports 84 HTML 4.01 errors.
<URL:http://jigsaw.w3.org/css-validator/> reports 2 style-sheer
errors. <URL:http://webxact.watchfi re.com/ScanForm.aspx> reports 22
instances of violations of WAI WCAG-1 Level A (the least
restrictive level for judging accessibility for the handicapped).

With the detected bugs in the Web page, it is not possible to
determine whether IE or the page itself is at fault.

Thanks for the links to validators... they helped a little to tidy my
pages code... but I didnt ask for help tidying it up by adding "Alt's"
to links and "px" after the CSS width's :¬/


You have to have some sort of unit of measurement with CSS. With HTML, if
a unit is not a percentage, then it is a pixel. With CSS, you can have
points, picas, centimeters, inches, millimeters, pixels, ems, exes and
percentages; hence the need to specify the unit.

I modifed the CSS to add "px" after the pixel widths however... so no
moew CSS errors
...and the only HTML errors are things like "Background is not valid in
TD" which is obviously wrong as its working in both IE & Firefox...
It might "work" in both IE and Firefox, but it's still invalid. The reason
it is invalid is because it is deprecated in favor of CSS. Why is CSS
better? If a client decides tomorrow that they want seasonal colors, then
the author has to go into each td and make that change, instead of making
one change in a style sheet.
...and most of it is "errors" that I didnt bother putting Alt's for
1-pixel images... OMG! How could I be so careless with my 1x1 pixel
images?!?!!!?!
If an image is for decoration only and does not convey anything, then leave
the alt attribute blank, alt="".

Im guessing from the amount of people complaining about not liking
nested tables & pointing out stupid error-logs from "validators " that I
dont use ALT tags in images (and other unrelated rubbish) that nobody
here knows a fix to stop IE from crushing a table that it shouldn't?
Nested tables are a PITA to debug. They also take longer to load, and are
more prone to errors.

And frankly... there wont be any disabled people visiting my personal
webpage so I dont give a flying f*ck if they cant read the ALT tags for
1x1 pixel images!
Again, leave the value of the alt attribute blank, alt="". How do you know
that no disabled people are going to visit your personal webpage? If your
personal webpage is on the Internet, then you really don't know who is
going to visit.

Further, because it IS a personal page, you should take pride in it. It is
a reflection of you, and your work. How do you know some potential
employer isn't going to view the page and run it through a validator?

If you dont have a fix then PLEASE dont post shite from "validators "
that say my code wont work because of things like no "Alt" tags in
images >:¬O
You have more serious validation errors than missing alt attributes. For
example, you have <font>....<tabl e>... In the first place, a font element
can't hold a table element, and second, font is also deprecated in favor of
CSS.

It might work with this markup now, but, it might not work for other
browsers now and in the future. And yes, there are browsers other than FF
and IE.

If you hadn't gathered.... ALT tags and all the other rubbish returned
as "errors" are either false (like saying there is no background option
in the TD element.... which DOES work to show images) or aren't even
errors and intentionally left out (like ALT tags)...
...and no... none of that has ANY relevance to the table crushing by
itself in IE!!!!

The validator does not return false errors. It is a tool to help you find
out why something is not working the way you want it to. Fix the errors
first, and then see if it might not have cleared up. Fixing the alt error
is very simple, just do a search and replace, eg: replace {<img src} with
{<img alt="" src} (curly brackets added for clarity) and you'll be good to
go.

To anyone reading this: Sorry... irrelevant "errors" being pointed out
to me just because someone is unable to help kinda got me pissed :¬/


You forget, this is not a 24/7 help desk.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 24 '05 #6
Adrienne wrote:

You forget, this is not a 24/7 help desk.


What's its opening hours then? =)

Jul 24 '05 #7
Peter1968 wrote:
Adrienne wrote:
You forget, this is not a 24/7 help desk.

What's its opening hours then? =)


Opening, hell...when's Happy Hour? :)

--
Blinky Linux Registered User 297263
Who has implemented Usenet Solution #45933:
Now killing all posts originating at Google Groups

Jul 24 '05 #8
"Trammel" <Me@Server.co m> wrote:
And frankly... there wont be any disabled people visiting my personal
webpage so I dont give a flying f*ck if they cant read the ALT tags for 1x1
pixel images!


I know exactly why IE is breaking your tables. I know exactly how to
fix it. But because you're clearly a right little shit, I'm not going
to bother wasting any time on you, and I bet I'm not he only one. Bye.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net > <http://steve.pugh.net/>
Jul 24 '05 #9
"Trammel" wrote in comp.infosystem s.www.authoring.html:
To anyone reading this: Sorry... irrelevant "errors" being pointed out to
me just because someone is unable to help kinda got me pissed :¬/


Translation: You didn't like the help you got , so you choose to
deny that it _is_ help.

--

Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
Jul 24 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1545
by: Fuzzyman | last post by:
I've written a simple application in python with an HTML help file. I'm looking for a cross platform way of launching the help file. On windows I'd use : os.system('start help.html') Which automatically opens the file with the users browser. Is there a cross-platform way of doing the same thing ?
5
1947
by: sandwich_eater | last post by:
I am looking for a Linux distribution and a standard C++ compiler (IDE not too important) that can also compile to Win32, to run on my Dell dimension 2400... I have trouble with new distros since installing a USB 2 card. I am wondering if it is better to get a new machine and dedicate it to Linux and C++ development and deal with cross platform issues later, alternatively use something like Borland C++ on Windows.
14
2143
by: John Salerno | last post by:
Bear with me, but I've been reading a lot about how the .NET languages are platform independent, and I assume this means a program written in C# can be run on a Unix or Mac machine. If this assumption is wrong, then nevermind! :) But if it's true, what will be necessary to run these programs on a Mac, for example? I know they would need an equivalent to the .NET Framework, but does something like this exist yet, or is the "platform...
12
1754
by: XShadow | last post by:
Hi, I'm working on a new cross platform c++ framework, I principally wrote it for fun in my spare time. The project becomes rather large so I decided to make it available on the web in the hope that it can be useful to someone. I'd like to have some feedback from you all, any suggestion or criticism are welcome. The project is released under open source license and everyone can contribute to it. Cross platform toolkit library (xtklib)...
15
2328
by: CMM | last post by:
So I'm half way through overseeing a large project in ASP.NET 2.0. My superiors have decided that it would be nice if we ensured the site worked on all the major platforms (as they see it: IE, FireFox, and Safari). We've made heavy usage of the new MENU control and other intrinsic 2.0 controls.... nothing fancy! just using ASP.NET's built-in controls and very nice, pervasive, and clean usage of CSS. Now I find after more testing that the...
2
5580
by: maha | last post by:
Dear DB2 experts! I'm stuck with the following issue: from a customer I got a DB2 backup file, created on an AIX-32 machine that I cannot restore on my windows platform. I admit that I posses only limited knowledge on the administration side of DB2, but I have done a lot of research, without solving the problem. What I tried: For a regular RESTORE I would need a linux Big Endian machine
29
2339
by: töff 93722 | last post by:
Long story short, I built a website based primarily on JavaScript: http://www.sjcga.com The site renders *great* in WinIE6/7 and in Mac/Win Opera9. It has problems in Mac/Win Firefox2, and in Safari(OSX) ... especially the Gallery, but the rightside menu is funky also. I've "validated" my scripts through a couple different systems, to no
5
10095
by: Michael Reichenbach | last post by:
After working with script languages, notepad(++) and co. and several other ide`s I found something which really improved my productivity (Visual Studio 2005). It`s imho better then dev-cpp... I worked with C# and VB.net a bit and it was really easy because of the debugger, the interactive debugger, intellisense, command completer and so on. I would like to stick to this ide. But I thought about to invest in C++ instant of C# / VB.net...
1
7825
by: Vinod Sadanandan | last post by:
Cross Platform Migration An Unproblematic Approach (Windows-UNIX ) Oracle 10\11g The principal restriction on cross-platform transportable database is that the source and destination platform must share the same endian format. Redo log files and control files from the source database are not transported to destination database . New control files and redo log files are created for the new database during the transport process, and an ...
0
9531
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10115
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9957
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9775
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8780
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6609
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5373
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3456
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.