There must have been an upgrade tonight to my cloud forum and now I have an issue. The reply box for all the treads and pas has an image in it ! it's the one i use for my background. How do I remove it ?
Announcement
Collapse
No announcement yet.
How to remove ckeditor background image after vB5.4.2 upgrade
Collapse
X
-
How to remove ckeditor background image after vB5.4.2 upgrade
Last edited by glennrocksvb; 06-04-2018, 12:32 PM.Tags: None
- Top
- Translate
- Bottom
-
The ckeditor iframe now seems to have css_additional template included in the latest vB5 version. This means if you have custom CSS added for "body" tag selector for the main page, then it will also apply to the ckeditor iframe body. I think that's what's happening to your forum.
My Amazon Affiliate Link
Fast vBulletin VPS Host:
This site is hosted by IONOS
- Top
- Translate
- Bottom
-
The solution is to change your custom CSS:
with:Code:body {
Code:body:not(.cke_editable) {
My Amazon Affiliate Link
Fast vBulletin VPS Host:
This site is hosted by IONOS
- Top
- Translate
- Bottom
- Likes 1
Comment
-
Glad to help!
Changed the topic title to make it more descriptive and help more people.
My Amazon Affiliate Link
Fast vBulletin VPS Host:
This site is hosted by IONOS
- Top
- Translate
- Bottom
- Likes 1
Comment
-
- Top
- Translate
- Bottom
- Likes 1
Comment
-
I checked and CKEditor iframes tend to have "cke_xxxx" classes in the body tag. So try this:
Replace this in your css_additional template:
with:Code:body {
This means to select the body tag without "cke_" in the class attribute.Code:body:not([class*="cke_"]) {
This replaces my suggestion in post #3.
My Amazon Affiliate Link
Fast vBulletin VPS Host:
This site is hosted by IONOS
- Top
- Translate
- Bottom
Comment
-
Thanks Glenn solution worked perfectly!Originally posted by glennrocksvb View PostI checked and CKEditor iframes tend to have "cke_xxxx" classes in the body tag. So try this:
Replace this in your css_additional template:
with:Code:body {
This means to select the body tag without "cke_" in the class attribute.Code:body:not([class*="cke_"]) {
This replaces my suggestion in post #3.
- Top
- Translate
- Bottom
Comment
-
Awesome, enjoy your coffee!Originally posted by glennrocksvb View PostI checked and CKEditor iframes tend to have "cke_xxxx" classes in the body tag. So try this:
Replace this in your css_additional template:
with:Code:body {
This means to select the body tag without "cke_" in the class attribute.Code:body:not([class*="cke_"]) {
This replaces my suggestion in post #3.
- Top
- Translate
- Bottom
- Likes 1
Comment
-
Can you post a screenshot Fleiding?
My Amazon Affiliate Link
Fast vBulletin VPS Host:
This site is hosted by IONOS
- Top
- Translate
- Bottom
Comment
Latest Posts
Collapse
-
Reply to Welcome to our newest member issueby SnowhogWow! I totally forgot about this.

I just now edited the user.php file. We have a BANNED 'new' user showing in "Welcome to our newest...Today, 08:22 AM -
Reply to Request: Instagram Media Embed or Retrieval Mod for vBulletin Forums Using Snapinstaink Approachby glennrocksvbThank you for the suggestion. I took some time to evaluate the request further and review Instagram's Terms of Use.
I understand the use...Yesterday, 12:05 PM -
Get Affordable and Fast VPS for vBulletin -
I am running a vBulletin forum for a content creator community and wanted to raise a mod request around Instagram media integration. Currently when members...Yesterday, 09:14 AM

Comment