[wp-trac] [WordPress Trac] #9885: Kubrick Theme CSS Errors
WordPress Trac
wp-trac at lists.automattic.com
Wed May 20 04:53:24 GMT 2009
#9885: Kubrick Theme CSS Errors
--------------------------+-------------------------------------------------
Reporter: mrgtb | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: 2.8
Component: Themes | Version: 2.8
Severity: normal | Keywords: CSS, Kubrick Wide
--------------------------+-------------------------------------------------
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;
}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/9885>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list