Re: CSS positioning

"SHARPE, Ian" <Ian.SHARPE@cambridge.sema.slb.com>

> www.ntlworld.com uses drop down menus at the top of the page which I
can't
> read under large font settings and IE5.5. It appears that each item in
the
> menu is positioned using fixed values and so the next item in the menu
> obscures the previous one up to the bottom of the list.
>
> Problem is I'm not exactly sure how it's producing these menus and so
can't
> fix them. Assuming it's using CSS is there anyway that I can override
this
> fixed position in my stylesheet?

If you really want to make the page accessible...

Adding this to your user stylesheet seems to do a reasonable job...

.itemBorder { top:0px !important;position:relative !important;height:2em
!important }

it changes the position to relative, removes the top position and forces
the height to 2em, itemBorder is perhaps a common classname though so it
may effect other pages.

Jim.

Received on Thursday, 14 March 2002 12:09:00 UTC