Two Issues with Jetpack CSS Module
-
I noticed two big issues when using the CSS module.
1. When you add CSS (in this case I pasted) CSS where the properties where uppercased, on saved the plugin completely removed them.
So this
.class {
COLOR: #fff;
}Became
.class {
#fff;
}2. When you add an !important it messes with it.
So This
.class {
color: #fff !important;
}Became
.class {
color: #fff!important;
}
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Two Issues with Jetpack CSS Module’ is closed to new replies.