Hi Wade & [EMAIL PROTECTED]: On 7/5/05, H. Wade Minter <[EMAIL PROTECTED]> wrote: > I'm running into an oddity. I'm using divs to create pseudo-tables... > My page is at http://beta.comedyworx.com/showshow.php?show_id=17 > The HTML and CSS validate, but the links aren't clickable. > ... I've narrowed down the symptom > to the float: left line - when that line is removed, the links are > clickable (though the layout is screwed up). > ... The relevant CSS section is: ... > div.pseudorow { > margin:10px; > overflow:visible; > position:relative; > width:100%; > }
Removing position:relative; seems to cure it in Firefox and I'm not sure that rule is needed (links are not a problem in IE, layout is a bit broken though). James PS: Incidentally (OT for css-d), using <a href="javascript:..."> is a no-no as users with JS disabled get nothing from the links ... better to use <a href="biopage.php?..." onclick="return getBio(...);"> where getBio returns false to prevent the link action occurring when JS is active. Better still would be to ditch the hard-wired actions altogether and use unobtrusive JS principles to dynamically attach the event handlers ;-) ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
