I am trying to insert an image as a background for a table.
The snippet code area has all the tags for the table available to the user.
When a user chooses an uploaded image the code inserted is:
background-image: url('"bg.jpg"')
The image shows in the editor, but the code is stripped on Save.
Changing it to either of these, just makes things worse:
background-image: url('bg.jpg')
background-image: url("bg.jpg")
The only thing that works is:
background="bg.jpg"
While this is simple for me, it can be daunting for someone using WYSIWYG.
Does anyone know how to fix this problem? Maybe an entry in one of TinyMCE's configuration files?