Hello, i have a problem on ckeditor, when i save the content or paste my content in the source code
here is the sample
the code that i will paste
<div style="background:url(http://seopagepro.com/images/seopagepro-boxes.gif) no-repeat; height:485px;">
after i paste it and to the source and save the content
the div background doesnt show up anymore and turn into this:
<div height:="" http:="" images="" no-repeat="" scroll="" seopagepro-boxes.gif="" seopagepro.com="" style="">

Re: CKEditor removes div background image on save
Thanks in advance..
Re: CKEditor removes div background image on save
Re: CKEditor removes div background image on save
It looks like it's not parsing the background URL properly, or not escaping it properly. Have you tried using
<div style="background:url('http://seopagepro.com/images/seopagepro-boxes.gif') no-repeat; height:485px;">(single quotes around the image path).
Otherwise it looks like a bug to me.
Re: CKEditor removes div background image on save
i tried to add the single quote and still the same..
Re: CKEditor removes div background image on save
Have you tried defining the style in your stylesheet?
Then in your stylesheet:
.bg{background:url('http://seopagepro.com/images/seopagepro-boxes.gif') no-repeat; height:485px;}Re: CKEditor removes div background image on save
Re: CKEditor removes div background image on save
i think the problem is when my browser is firefox. Thanks for posting.