Make WordPress Core

Opened 16 years ago

Closed 16 years ago

#9885 closed defect (bug) (fixed)

Kubrick Theme CSS Errors

Reported by: mrgtb's profile 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;
}

Change History (1)

#1 @ryan
16 years ago

  • Resolution set to fixed
  • Status changed from new to closed

(In [11413]) Add missing semicolons. Props mrgtb. fixes #9885

Note: See TracTickets for help on using tickets.