I have this strange thing happening to my code. Using Firefox or Chrome (tried these two only) I cannot click (or even select with mouse) all of my categories in my website. The browser totally ignores them, but it shows them though.
You can see the code in the source code too, and looks OK. I don’t know what I did wrong, but I doubt it’s a server-side problem, it has something to do with the CSS, because when I removed a padding line from the CSS (from ul.menu li exactly), one of the categories suddenly became clickable/selectable again (Sample Category 4). I never encountered something like this in the past and I can’t think of a way to fix it. I’m not a very good stylist.
Here is the URL: ~removed~
You can see the problem in the “RULES SECTIONS” in the right, Sample Category 4 and Sample Category 5 are the unclickable/unselectable categories.
Ideas?
Your problem is that your #container is overlapping the menu on the right. Add this to .mini-panel in the css (line 4020 in style.php) position:relative; z-index:1000;
That should work for you.