Re: [css-d] Interesting bug... vanishing links!

2006-06-19 Thread Kenny Millington
 Please have a look at http://www.wdam.co.uk/clients/dynam/hh/

 If you look in Firefox, they all work fine on the front page.
 But if you click on homeseeker, the developer and landowner
 links stop working.

 Anyone seen this kind of thing before, or can offer advice?

The Web Developer toolbar is your friend. (Especially the Outline
Selected/Current Element.)

It looks like the triangle div is covering those links on some of the pages.

As a quick-fix I tried adding a z-index: 1; to the #sidebar div and
this seems to fix it, but may not be the best way to go about it.

-- 
Kenny Millington BSc(Hons)
E-Mail: [EMAIL PROTECTED]
Website: http://www.kennynet.co.uk/
__
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/


Re: [css-d] Extra horizonal line I can't get rid of

2006-06-14 Thread Kenny Millington
Hi,

 Somewhere, a horizonal line has shown up, and I
 have not been able to figure out how to get rid of it.  That would be
 the line above the text in the footer box of the page.

This appears to be being caused by a global UL definition in the CSS:

ul { /* needs the Holly hack to avoid IE bugs */
border-top: 1px solid #000;
}

Adding a border: 0; to the definition for .footer2 ul removes it.

HTH,
-- 
Kenny Millington BSc(Hons)
E-Mail: [EMAIL PROTECTED]
Website: http://www.kennynet.co.uk/
__
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/