
Originally Posted by
astral276
I've found that if you paste pure html into the html listing editor and then switch to one of the wysiwyg editors it can screw up the original html. I assume this is because the wysiwyg editors do not implement the full html language.
Anyone else noticed this?
Yes it can be a real pain, especially when you've spent ages creating something. The WYSIWYG tends to strip out some tags (especially css) so you need to use inline css for it to work at all.
Recently the background: style tag was being mangled by the WYSIWYG, the repeat atribute was stripped out & some weird code was added, I was using it for a gradient background, but the WYSIWYG kept tiling it
last I heard Gazza was still looking into the problem.
I just had a look it did the same to yours busylizziecraftsit looks like the problem is made worse by using firefox as those moz tags must originate from there.
Code:
-moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial
I think it doesn't like you using multiple atributes even though it is perfectly valid HTML,
you've used
Code:
background: transparent url (http:etc) repeat scroll 38px 0px;
I was using
Code:
background: url('http:etc') repeat-x;
& the repeat-x was being stripped out & being replaced with the moz tags.
When I re did it with each atribute listed singly
ie
Code:
background-image: url ('http:etc'); background-repeat: repeat-x;
it seemed to be ok.