On 16/02/07, Douglas Pollock <[EMAIL PROTECTED]> wrote: > I trying to get a left side menu working. The main body of the page is > simple html pages that are made visible by clicking on the left-side menu > links. The problem is that the div tags surrounding the page names appears > to block the visibility: hidden; attribute. The pages should normally be > hidden until a link is selected. > > Can anyone offer a suggestion?
The only mention of visibility in the default stylesheet that I can see is applied to an element with the id "panel", and you have no such element. You have a huge number of syntax errors: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.ace-golf.com%2Frangegift%2FMenuTest%2FTabbedUI5.php Points considered harmful. http://css-discuss.incutio.com/?page=UsingPoints Since the "links" are just anchors and not actually links, as far as I can tell, they aren't put in the tab order and are keyboard in accessible. Nested tables and presentational markup. Argh. Use CSS for presentation. You probably don't want the gaps being left behind by the invisible content. See tabtastic for a more accessible implementation of this type of thing. http://phrogz.net/JS/Tabtastic/index.html -- David Dorward <http://dorward.me.uk><http://blog.dorward.me.uk> ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
