>> I have a weird CSS problem at:
>>
[quoted text clipped - 18 lines]
>
><html xmlns="http://www.w3.org/1999/xhtml">
Actually, I was working on this and changed it - also did the
validation with W3C - comes out just fine.
>And if it is 4.01 all your closures are wrong. You must not />
>merrily along like you do.
Ok, I got rid of />, though it validated under 'loose' with those.
Still doesn't work in Firefox.... :(
Any other ideas as to why FF doesn't allow the CSS hover effect or
text selection?
Thanks,
GA
dorayme - 26 Jun 2007 03:01 GMT
> >> I have a weird CSS problem at:
> >>
[quoted text clipped - 31 lines]
> Any other ideas as to why FF doesn't allow the CSS hover effect or
> text selection?
Some ideas yes, I would redo things rather to remove the tightly
pixel requirements you have... but without going to far, I was
seeing progress by changing some things of yours in a direction I
would go the css thus, I just quote and alter some things, remove
some of your positioning and gettig the hand and linking back as
a result:
BODY {
font: 100% arial,sans-serif;
background-color: #EDE7D0;
margin: 0;
}
A {
text-decoration: none;
font-weight: bold;
color: blue;
}
#page {
margin: auto;
width: 900px;
}
#head {
margin: 10px 3px 5px 0px;
}
#colhd {
float: right;
margin: 0;
}
and in your html, move <div id="colhd"> just after the <div
id="page">. Also be rid of <center> and style the "page" div.
These are just suggestions to fiddle with. I would be careful of
so much "positioning". Don't use font-size: 11px ...

Signature
dorayme
GA - 26 Jun 2007 04:27 GMT
>> >> I have a weird CSS problem at:
>> >>
[quoted text clipped - 68 lines]
>These are just suggestions to fiddle with. I would be careful of
>so much "positioning". Don't use font-size: 11px ...
Bingo - it was the positioning stuff - as soon as I removed the
position: relative tags, everything worked in ff.
Thanks!
-Mike