Opened 4 months ago
Closed 3 months ago
#23152 closed defect (bug) (fixed)
Twenty Twelve: Excessive CSS classes in functions.php
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.6 |
| Component: | Bundled Theme | Version: | 3.5 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | xoodrew@… |
Description (last modified by DrewAPicture)
There is navigation part in twentytwelve_content_nav function:
<nav id="<?php echo $html_id; ?>" class="navigation" role="navigation"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3> <div class="nav-previous alignleft"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentytwelve' ) ); ?></div> <div class="nav-next alignright"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div> </nav><!-- #<?php echo $html_id; ?> .navigation -->
We do not need CSS classes .alignleft and .alignright here, because the .nav-previous and .nav-next already have float properties in style.css. In one case this made the links appear in different lines while constructing the child theme. Although it didn't affect vanilla Twenty Twelve. The code could be just:
<nav id="<?php echo $html_id; ?>" class="navigation" role="navigation"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentytwelve' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div> </nav><!-- #<?php echo $html_id; ?> .navigation -->
Attachments (2)
Change History (10)
comment:1
DrewAPicture — 4 months ago
- Cc xoodrew@… added
- Keywords needs-patch added
comment:2
lancewillett — 4 months ago
- Keywords dev-feedback removed
- Milestone changed from Awaiting Review to 3.6
Funny, but I don't know how to make a patch. I'm not using any version control software - using Trac only via browser interface. Can I submit patch via browser?
comment:4
in reply to:
↑ 3
DrewAPicture — 4 months ago
Replying to TomasM:
Funny, but I don't know how to make a patch. I'm not using any version control software - using Trac only via browser interface. Can I submit patch via browser?
Take a peek at Submitting a Patch in the core handbook and see if that's something you're up for. If not, don't sweat it, one of us can take care of it.
comment:5
DrewAPicture — 4 months ago
- Description modified (diff)
Thanks Drew!
I read article, but I will have to spend more time to learn and test, so for now I will rely on you guys ;)
DrewAPicture — 4 months ago
comment:7
DrewAPicture — 4 months ago
- Keywords has-patch added; needs-patch removed
comment:8
lancewillett — 3 months ago
- Owner set to lancewillett
- Resolution set to fixed
- Status changed from new to closed
In 23427:

Seems sensible. As nav-previous and nav-next are already applied to this div element, adding alignleft and alignright are redundant.
Plus, the RTL stylesheet already switches the floats on nav-previous and nav-next.
@TomasM: Would you like to make a patch?