@Brendan Kehran I tried commenting out this code
EDIT: commenting out the below code DID work. The problem was that I hadn't cleared out my browser cache. If you have this issue in the future try comment out this code contained in CMS\CMSAdminControls\CKeditor\config.js
CKEDITOR.on('instanceReady', function (ev) {
ev.editor.dataProcessor.htmlFilter.addRules(
{
elements:
{
$: function (element) {
// check for the tag name
if (element.name === 'img') {
var style = element.attributes.style;
// remove style tag if it exists
if (style) {
delete element.attributes.style;
}
}
// return element without style attribute
return element;
}
}
});});
and it's still stripping out any inline css. How can I disable this feature and allow inline styles to be saved?
Also, the business does not use the inline styles; they add the styling by right clicking on the image and going to properties. Even when the styles are added in that way, the styling is not saving when "save" is clicked.
@Juraj Ondrus I removed the aspx from default attachment type in settings and I'm still having this issue