Opened 11 years ago
Closed 11 years ago
#26866 closed defect (bug) (fixed)
Twenty Twelve uses class .singular that is not defined in the theme
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.9 | Priority: | low |
Severity: | normal | Version: | 3.8 |
Component: | Bundled Theme | Keywords: | has-patch |
Focuses: | Cc: |
Description
In style.css under @media print we find bunch of rules with the class .singular. As far as I know, Twenty Twelve does not generate such body class.
Most likely easiest way to fix it is to append code from Twenty Fourteen to the function that creates extra BODY classes:
if ( is_singular() && ! is_front_page() ) { $classes[] = 'singular'; }
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
Thanks for this report, looks like the CSS is only in the Print media query block.