Two Suggestions
-
I just left you a five star review and figured I’d post this here because I love this plugin.
1. Update this plugin so that “Last Updated” on ww.wp.xz.cn doesn’t say “2014-11-25.” I don’t think I’m the only WordPress designer that’s hesitant to use themes and plugins that aren’t actively being developed. When I go on a search, this is the first thing I look at.
2. The only thing I can see where Jetpack and Theme Junkie Custom CSS outshine this plugin is the width of the editor. It’s too narrow horizontally if you’re using a large monitor (max-width: 831px / width: 95%) and I think this should be adjusted in the next update.
Under wp-content > plugins > simple-custom-css > codemirror > codemirror.css, you’ll see:
.CodeMirror {
/* Set height, width, borders, and global font properties here */
font-family: ‘Consolas’, ‘Monaco’, monospace;
height: 100%;
min-height: 60px;
border: 1px solid #ddd;
background: #f9f9f9;
max-width: 831px;
width: 95%;
margin-right: 0;
}In my opinion, this should be changed to:
.CodeMirror {
/* Set height, width, borders, and global font properties here */
font-family: ‘Consolas’, ‘Monaco’, monospace;
height: 100%;
min-height: 60px;
border: 1px solid #ddd;
background: #f9f9f9;
max-width: 98%;
width: 100%;
margin-right: 0;
}Besides that, it’s perfect. Thank you for this plugin!
The topic ‘Two Suggestions’ is closed to new replies.