-
Notifications
You must be signed in to change notification settings - Fork 238
Closed
Labels
Description
Hi, this is a small style error using ckeditor 4.0.1+ (and possibly some versions before)
The template style breaks because the wrapper class is missing from the html. I haven't used ckeditor before so I can't recall which version introduced this backwards incompatible change.
A quick fix, only available for CCS3 selectors though.
1. <script type="text/javascript" src="{{ CKEDITOR_JS_URL }}"></script>
2.
3. <style type="text/css">
4. span.cke_skin_kama { border: none !important; }
5. + div[id*='cke_id_'] { margin-left: 107px; }
5. - span.cke_wrapper { margin-left: 107px; }
6. </style>
Reactions are currently unavailable