Dave Kolb wrote: "And issue two apparently was a FireFox issue and the "mono" link is hot in IE8."
I tested the forum page containing Dave's message (http://go-mono.com/forums/#nabble-td3096414%7Ca3096611) in Safari 5.0.3 (6533.19.4), Google Chrome 8.0.552.231, Firefox 3.6.12 and Opera 11.0 build 1156 all on my Mac running OS X 10.6.5. I wanted to see if the "mono" link is hot in any of them and what the cause might be. The "mono" link was hot only in Opera. The link was inaccessible in Safari, Chrome and Firefox. After looking at the HTML source for that page I was able to see that the real problem is slightly different. (The "mono" link actually is hot as you can see in the code snippet below.) The real problem is that the "mono" link is inaccessible because it is being eclipsed by the div that contains the word "Forums" shown just above the "mono" link. The solution that works on all 4 browsers I tested is quite simple. In the code snippet below on line 2 change <div id="content-header"> to <div id="content-header" style="z-index:-1">. Adding the style="z-index:-1" attribute will make sure all browsers render that div behind the "mono" link thus making the "mono" link always accessible. Now that I've diagnosed the bug and provided a solution how can I get the solution incorporated into the forums code? -SteveL <div id="page"> <div id="content-header"><h2><!--BEGIN PAGE TITLE-->Forums<!--END PAGE TITLE--></h2></div> <div id="wrapper" class="wide"> <div id="sidebar"> <div id="toc-parent"></div> <!-- BEGIN SIDE CONTENT --> <!-- END SIDE CONTENT --> </div><!--#sidebar--> <div id="content" class="wide"> <!-- BEGIN MAIN CONTENT --> Mono'>http://n4.nabble.com/Mono-f1490590.html">Mono <!-- END MAIN CONTENT --> </div><!--#content--> </div><!--#wrapper--> </div><!--#page--> ________________________________ From: CodeSlinger <[email protected]> To: [email protected] Sent: Mon, December 20, 2010 1:43:18 PM Subject: Re: [Mono-list] Pending posts and top level mono forum hot link Wel this post did not show pending so only the ones posted before confirming my subscription were the issue. And issue two apparently was a FireFox issue and the "mono" link is hot in IE8. Dave -- View this message in context: http://mono.1490590.n4.nabble.com/Pending-posts-and-top-level-mono-forum-hot-link-tp3096414p3096611.html Sent from the Mono - General mailing list archive at Nabble.com. _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
_______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
