Opened 4 years ago
Closed 4 years ago
#9885 closed defect (bug) (fixed)
Kubrick Theme CSS Errors
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.8 |
| Component: | Themes | Version: | 2.8 |
| Severity: | normal | Keywords: | CSS, Kubrick Wide |
| 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;
}
Change History (1)
Note: See
TracTickets for help on using
tickets.
(In [11413]) Add missing semicolons. Props mrgtb. fixes #9885