Opened 12 years ago
Closed 12 years ago
#18884 closed defect (bug) (fixed)
TwentyEleven nav#nav-single blocks clicks
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.3 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Bundled Theme | Keywords: | has-patch dev-feedback |
Focuses: | 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)
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:
<div class="entry-meta">
, not in<nav id="nav-single">
.single.php
too.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.