Hello everyone,
If you add any style code to an "EditLive! for Java CCE" widget that contains camel cased IDs, they will get modified during the editor's parsing (when you switch tabs or save the content instance). Is there a way to avoid that?
You can see the issue for yourself, if you paste the following code in
the widget's body (after switching to the code tab):
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="generator" content="EditLive! 7.5.1.16">
<style type="text/css">
<!--
#testThis {
color: red;
}
-->
</style>
</head>
<body>
<div id="testThis">some text</div>
<p> </p>
</body>
</html>
And then Switch back to the 'Design' tab and you will see the problem, only the css
code is being changed to lowercase (i.e., '#testThis' becomes '#testthis').
If any of you ever found a workaround for that (that does not involve getting rid of the camel cased IDs), please let me know.
Thanks in advance.