d20pfsrd spell links covered by span element

On the d20pfsrd Sor/Wiz spells page, and presumably other such pages, links above a section header such as "Enchantment" are not clickable. This is because they are covered by an invisible span that is overflowing the bounds and blocking click events.


This can be fixed by adding the following to the site css.

``` css
thead {
    pointer-events: none;
}
thead a {
    pointer-events: auto;
}
```

Attempting to report this via the bug report form did not produce a new visible bug entry in the bug database.

https://mantis.opengamingnetwork.com/mantis/view_all_bug_page.php?filter=65d77b6435faf
Tagged:
Sign In or Register to comment.