Les wrote:

> Maybe I've just been awake too many hours, but I can't find this....
> 
> http://www.takachroe.com/index.cfm
> 
> 
> Look at the nav. It's not that compliated and works perfect 
> in I.E., but 
> in Netscape and Firefox, there's problems selecting the last 
> two links.
> 
> It's just a list:
> 

<SNIP>

> CSS is here:
> http://www.takachroe.com/css_browser.css
> 
> 
> Ideas?

Les-

The problem isn't the list, its the relatively positioned element that
is covering it up.

Take the following ID and add a background-color:#333; to it and you
will instantly see the problem.

#takachADDRESS {
 position: relative;
        left: 300px;
        top: 23px;
        font-size: 10px;
        color: #999999;
        margin: 0 0 0 0;
        height: 70px;
}

A quick fix would be to give #takachADDRESS a bottom margin of 25px.

Aside from that, I think your coding suffers from a number of
non-apparent issues, mostly stemming from absolute positioning, fixed
font sizes, declared height values, etc.

I would take some time to study up in the list's WIKI on how to use
floats and relative font sizes. I think you could easily accomplish the
same design with much more accessible code.

Regards,
Ron
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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/

Reply via email to