We use a product that has CKEditor bundled with it, and I noticed on the latest version of CKEditor the HSPACE and VSPACE properties are no longer shown on the image properties dialog box.
Granted CSS is a better way to handle this styling, but is there a way to get those back? I looked at the config docs but didn't see a reference to that anywhere.
Thanks.
Hmm... Do you have config
Hmm... Do you have config.allowedContent defined? The Advanced Content Filter is able to hide fields that are not allowed. To enable them margin-top, margin-left, margin-right and margin-bottom have to be allowed. They also could have been hidden intentionally by using dialog API. In any case, you should contact the authors of the product you use because most likely only them can unblock these fields.
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Thanks -- I'll look into that
Thanks -- I'll look into that. The product that uses this literally just drops it in, so we have full access to the config files. I'll dig into it and post back what I find. Thanks!
config.allowedContent is set
config.allowedContent is set to true, which according to the docs means ACF would be disabled, so next step would be to check into the dialog API?
Never mind -- dug into the
Never mind -- dug into the product that's using CKEditor and they replaced the old standard image plugin with the advanced image plugin, and it doesn't have hspace and vspace as options. Looks like I can flip back to the other plugin to get those back.
Thanks so much for the quick replies and pointers.