You're welcome DD and go ahead and contact Ger. Ask him if he can make the borders into actual style borders while you are at it. I think they are currently achieved by using slightly larger background elements, this makes it difficult or impossible to have borders and transparent/translucent effects - just something that comes up a lot in connection with this menu. Many folks would be very happy if the entire styling of the menu could be done in a stylesheet.
Ross_Wells,
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
Is very nearly quirks mode by the way. You just have to be sure to specify units in style for some browsers, otherwise it is just about identical, especially in IE where document.documentElement must be used for document.body in many cases though, or better yet a function to determine which is preferred by the IE browser being used:
Code:
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
Put that at the start of your code and substitute iecompattest() for both document.body and document.documentElement used elsewhere.
Designing in full quirks is so not now anyway. Still it would be nice if the Opera folks fixed that, if you tell them about it, they may as, they have in the past.
Bookmarks