Opened 16 years ago
Closed 16 years ago
#9885 closed defect (bug) (fixed)
Kubrick Theme CSS Errors
Reported by: | mrgtb | Owned by: | |
---|---|---|---|
Milestone: | 2.8 | Priority: | normal |
Severity: | normal | Version: | 2.8 |
Component: | Themes | Keywords: | CSS, Kubrick Wide |
Focuses: | Cc: |
Description
You have two mistakes in the CSS file for the Kubrick theme. You have missing Semi Colons. (also present in WordPress 2.7.1)
Find in CSS:
#content {
font-size: 1.2em
}
Should be:
#content {
font-size: 1.2em;
}
Find in CSS:
.alignleft {
float: left
}
Should be this:
.alignleft {
float: left;
}
Note: See
TracTickets for help on using
tickets.
(In [11413]) Add missing semicolons. Props mrgtb. fixes #9885