Dear Sofian,
Please go to the file: templates\sj_veritymag\component.php and find:
<?php if($mailto == true) : ?>
<?php $this->addStyleSheet(JURI::base() . 'templates/' . $this->template . '/css/mail.css'); ?>
<?php endif; ?>
=> Edit to:
<?php if($mailto == true) : ?>
<?php
if($doc->direction == 'rtl') $this->addStyleSheet(JURI::base() . 'templates/' . $this->template . '/css/mail-rtl.css');
else $this->addStyleSheet(JURI::base() . 'templates/' . $this->template . '/css/mail.css');
?>
<?php endif; ?>
Then create the file 'mail-rtl.css' in folder:
templates\sj_newsii\css
and add the code to this file:
#mailto-window {direction: rtl;}
Thanks