Hi,
I'm trying to add classes to the TinyMCE -- Format -- dropdown. It's said, that you have to add them inside the editor.css file, but it doesn't work.
I also tried to edit the editor.css file inside /cms/css/, but that didn't work either. What am I doing wrong?
The SilverStripe version running is 2.4.7, I'm not using editor.css inside my frontend and this is how my editor.css looks:
body.mceContentBody {
width: 480px;
}
.highlighted {
color: #009ee0;
}
.iconed {
margin-top: 20px;
padding-left: 21px;
background-image: url('../img/iconed.png');
background-position: left top;
background-repeat: no-repeat;
}
.columned-2 {
-webkit-column-count: 2;
-moz-column-count: 2;
-webkit-column-gap: 40px;
-moz-column-gap: 40px;
}
.columned-3 {
-webkit-column-count: 3;
-moz-column-count: 3;
-webkit-column-gap: 40px;
-moz-column-gap: 40px;
}
Best, Mario