Sent by James Aylard on 15 August 2002 19:07
Desmond,
> > > Try the following address: 142.103.134.155/js/index.html .
[snip]
> So the problem is, the .css style works for the link above "welcome", but
> not for my menu. This is what i've been messing around with for the last 2
> days but still no luck. I think that it has to do with the menu being
> implemented in javascript.
As someone else already pointed out, you have some very badly formed
html that is no doubt tripping up the various browsers in which you are
testing this: Your div of class "menu" begins within the <head> of the
document, and closes further on down within the <body> of the document. That
any browser even _attempts_ to render this should be considered a small
miracle. That your CSS, when applied to this, doesn't work, is no surprise
at all.
You _need_ to fix your html before attempting anything more with your
CSS. If you don't, you are wasting your time, not to mention that of others.
James Aylard