IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New Possible fix?
Not that I don't agree, but a possible fix would be adding the following to the stylesheet:

LI { MARGIN-LEFT: 0.1cm }

Doesn't effect Mozilla too much, but helps on IE.
New I'll give it a try.
We already have:
\nUL {\n   LIST-STYLE-TYPE: disc;\n   MARGIN-LEFT: 0.5cm;\n}\nOL {\n   MARGIN-LEFT: 0.5cm;\n}\n
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New That works
Maybe IE uses decimals, Mozilla integers.
-drl
New Think we discussed it previously...
...but the problem seems to be that IE uses as offset of 1.0cm as the base reference offset. Means when you put 0.5, you are effectively to the left of the reference (-0.5cm) causing your setting to actually shift the stuff left. OTOH, Mozilla seems to use 0.0cm as the base reference, so using 0.5cm shifts things right.

The Mozilla behavior would seem much more logical - 0 is a much more logical starting point.

The addition of the .li tag just is meant to compensate for this - without being too noticeable on Mozilla.
New What's a "cm"?
I thought for sure we were talking about variable-size displays, here. Is that your stylesheet for paper?

<ideologue mode off>

Edit: typo

Many fears are born of stupidity and ignorance -
Which you should be feeding with rumour and generalisation.
BOfH, 2002 "Episode" 10
Expand Edited by tseliot March 21, 2003, 02:55:50 PM EST
New Open to suggestions...
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Another way
You could restrict the style change to a certain known nesting level:
\nBODY TABLE TR TD UL {\n LIST-STYLE-TYPE: disc;\n MARGIN-LEFT: 0.5cm;\n}\nBODY TABLE TR TD OL {\n MARGIN-LEFT: 0.5cm;\n}


I'll look and see if I can find a more palatable solution.
New Sorry, I have this conversation with my graphic artist a lot
He's stuck in the print world: hard-codes page widths on web pages, etc.

My standards, in order of preference:

1) Use percents or ratios. Print layout people are trained very well to override this with a ruler, but it is the natural layout vocabulary. If you look at a newspaper, most people immediately recognize that it has two, three, or four columns, or that the ads are 1/4 page. They don't know (and don't care) that 1/2 of the page equals 6.32 inches. Since we have techniques built into CSS to do this math automatically, use them.

2) Use relative length units. To quote CSS2:
There are two types of length units: relative and absolute. Relative length units specify a length relative to another length property. Style sheets that use relative units will more easily scale from one medium to another (e.g., from a computer display to a laser printer).

Relative units are:

em: the 'font-size' of the relevant font
ex: the 'x-height' of the relevant font
px: pixels, relative to the viewing device

These are to be preferred when the primary content is textual, the most common case for Web documents. Since you are already defining your font size, whether in relative or absolute units (and I prefer em's), you chain the rest of your display (which usually bounds that textual content) to those sizes by keeping things relative.

3) Absolute units: again a quote from CSS2:
Absolute length units are only useful when the physical properties of the output medium are known. The absolute units are:

in: inches -- 1 inch is equal to 2.54 centimeters.
cm: centimeters
mm: millimeters
pt: points -- the points used by CSS2 are equal to 1/72th of an inch.
pc: picas -- 1 pica is equal to 12 points.

'Nuff said. I only use absolute units on "@media print" sections.

Not only does the above prioritization allow you to scale better on a vast range of clients, but it allows the user to make small changes (like enlarging the font size using a browser preference) with global, yet unconflicting effects.

Many fears are born of stupidity and ignorance -
Which you should be feeding with rumour and generalisation.
BOfH, 2002 "Episode" 10
New Again, open to suggestions...
By which I mean, if you have some specific text for me to try out, I'll stick it in and try it out. As it is, I know very little about CSS and don't really have the time right now to research it. :-)
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Ah. Will do. And test. And provide. Gimme a minute

Many fears are born of stupidity and ignorance -
Which you should be feeding with rumour and generalisation.
BOfH, 2002 "Episode" 10
New Thankee sai.
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Quick fix.
Seems to provide identical behavior on Moz 1.3 and IE 5.0 to what we already have (give or take a pixel). Difference being that Moz adds margins and IE doesn't. But that's how it was anyway.

  <style type="text/css">\n<!--\nbody { font-size: 100%; font-family: verdana; }\ntd { font-size: 90%; font-family: verdana; }\nh4 { font-size: 80%; font-weight: bold; }\nUL {\n   LIST-STYLE-TYPE: disc;\n   MARGIN-LEFT: 1em;\n}\nOL {\n   MARGIN-LEFT: 1em;\n}\nLI { MARGIN-LEFT: 1em }\n\ni { font-style : italic; }\n.m { font-size: 80%; }\n.odd { background-color: #E6E8fA; }\n.even { background-color: #ffffff; }\n--> </style>

Many fears are born of stupidity and ignorance -
Which you should be feeding with rumour and generalisation.
BOfH, 2002 "Episode" 10
New Modified, and thanks.
How does it look?
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New 1.4em appoximates 0.5cm
The percentages would be nicer, but they don't work for the indentation.
New Re: Possible fix?
Good call, that worked.
-drl
New Works until...
...Scott decides to expand the list to 10 bullets - in which case the leading digit gets dropped again. :-)
     FWIW - (jbrabeck) - (23)
         Me too. - (altmann)
         Not much I can do about browser bugs... -NT - (admin) - (21)
             'k. Only use MSIE at work. (Mandated). Just a FYI. -NT - (jbrabeck)
             Possible fix? - (ChrisR) - (15)
                 I'll give it a try. - (admin) - (12)
                     That works - (deSitter)
                     Think we discussed it previously... - (ChrisR)
                     What's a "cm"? - (tseliot) - (9)
                         Open to suggestions... -NT - (admin) - (8)
                             Another way - (ChrisR)
                             Sorry, I have this conversation with my graphic artist a lot - (tseliot) - (6)
                                 Again, open to suggestions... - (admin) - (5)
                                     Ah. Will do. And test. And provide. Gimme a minute -NT - (tseliot) - (3)
                                         Thankee sai. -NT - (admin) - (2)
                                             Quick fix. - (tseliot) - (1)
                                                 Modified, and thanks. - (admin)
                                     1.4em appoximates 0.5cm - (ChrisR)
                 Re: Possible fix? - (deSitter) - (1)
                     Works until... - (ChrisR)
             Tank U, Tank Ewe, Tank you. - (jbrabeck) - (3)
                 Thank the people with the fixes. - (admin) - (2)
                     Okee Dokee... - (jbrabeck) - (1)
                         Take out the trash or you don't get to eat - (Steve Lowe)

Where's my rapid fire?
167 ms