Hello,
I am assuming that for RTL, you are simply displaying the text with the "align=right" in the CSS file.
If that is all you need, then please let me know what you mean by 'distracted output'. The CSS file should be correctly pointed at in the HTML template and should be present under the same folder that gets created for your Internet Service in se80.
In the HTML template, the CSS file is pointed at using javascript as below:
if ( ~itsmobileCssInclude != "" ) <!-- customer include from gui settings -->
cssinclude = "styles/all/" & ~itsmobileCssInclude & ".css";`
<link rel="stylesheet" href="`mimeURL(~service=~current_service, ~theme=~theme, ~language="", ~name=cssinclude)`" type="text/css" />
` else <!-- default include from itsmobile --> `
<link rel="stylesheet" href="`mimeURL(~service="itsmobile", ~theme=99, ~language="", ~name="styles/mobile.css")`" type="text/css" />
` end;
Let me know.