Topic awaiting preservation: making dhtml more compatible (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: the space between us |
posted 11-24-2002 21:02
i don't know how often a question like this has been asked before.so, sorry if ask something soopid. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 11-24-2002 23:24
One thing that jumps out at me is that you're using CSS properties as though they were numbers. For instance, you have |
Bipolar (III) Inmate From: Berlin (almost) |
posted 11-24-2002 23:31
It's behaving that way because you're using IE's "document.all" method of accessing the table you want to move around, while newer versions of IE, Mozilla and other standards compliant browsers let you access it via the DOM with "document.getElementById". |
Bipolar (III) Inmate From: Berlin (almost) |
posted 11-24-2002 23:34
Ermmm... seems as if I've been a bit late again. |
Bipolar (III) Inmate From: the uterus |
posted 11-25-2002 01:35
kuckus: |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 11-25-2002 01:41
CSS! Font tags have been deprecated since - get this - 1996, in favor of CSS. Even ol' NN4 supports basic font size and color CSS attributes. |
Bipolar (III) Inmate From: the uterus |
posted 11-25-2002 01:58
I actually use as much CSS as I possibly can except I sometimes put it in a <font> tag... |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 11-25-2002 02:44
Yes. If you need to apply style and there doesn't exist a tag that holds the meaning you need, use <span> or <div> instead of <font>. (Never use <font>, ever.) |
Paranoid (IV) Inmate From: the space between us |
posted 11-25-2002 08:55
thx for all your great help so far. i'll have a look at it when i get out of this **** school. |
Paranoid (IV) Inmate From: the space between us |
posted 11-25-2002 14:54
oh and because of this font tag...nevermind |
Bipolar (III) Inmate From: the uterus |
posted 11-28-2002 00:12
Okay, I?ve been messing around with this one. code: <?xml version="1.0" encoding="UTF-8"?>
|
Bipolar (III) Inmate From: Australia |
posted 12-08-2002 03:25
your I.E probably isnt refreshing, i have so many problems with it not refreshing even after it apparently clears cache and temp files, really gives me the **** sometimes.. Maybe ive just got a dodgey install or something. |
Maniac (V) Inmate From: under the bed |
posted 12-08-2002 04:39
Slime - just a note about unit of measure - you are correct as it relates to his example of course. In your example though, the 'px' is not needed. A value of 0 is valid as is. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 12-08-2002 07:14
Oh, you're right. I always forget that. Not a bad thing to forget, in my opinion =) |