Opened 20 months ago
Closed 18 months ago
#18884 closed defect (bug) (fixed)
TwentyEleven nav#nav-single blocks clicks
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.3 |
| Component: | Bundled Theme | Version: | |
| Severity: | normal | Keywords: | has-patch dev-feedback |
| Cc: |
Description
In image.php the following HTML is rendered:
<nav id="nav-single">
<h3 class="assistive-text">Image navigation</h3>
<span class="nav-previous">
<a title="Title" href="http://example.com/something">← Previous</a></span>
<span class="nav-next">
<a title="Title" href="http://example.com/something">Next →</a></span>
</nav>
The links within the nav element are unclickable in Firefox 7.0.1 on OSX. In style.css on line 1701, You can remove the postion:relative; property and change top:-0.3em; to margin-top:-0.3em; to accomplish the same effect.
Attachments (1)
Change History (7)
SergeyBiryukov — 20 months ago
comment:1
SergeyBiryukov — 20 months ago
- Keywords has-patch added
- Milestone changed from Awaiting Review to 3.3
comment:2
SergeyBiryukov — 20 months ago
comment:3
SergeyBiryukov — 20 months ago
#18942 has another patch: ticket:18942:18970-y-u-no-click.diff.
comment:4
iandstewart — 18 months ago
Confirmed. Removing the 100% in 18884.patch works for me too.
Note: See
TracTickets for help on using
tickets.

Confirmed in Windows browsers as well: Firefox 7, Chrome 14, Opera 11.51, Safari 5.0.3. My results are a bit different though:
Replying to kingkool68:
This makes it the other way round: links in <div class="entry-meta"> become clickable, and the ones in <nav id="nav-single"> become unclickable.
Removing width: 100%; seems to make the links in both blocks clickable.