You can also go to /templates/ja_purity_ii/layouts/blocks and edit the file head.php on line 11
you should see:
<?php if($this->direction == 'rtl') : ?>
<link href="<?php echo $this->templateurl(); ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
<!-->
<link rel="stylesheet" href="<?php echo $this->templateurl(); ?>/css/ie8-rtl.css" type="text/css" />
<!-->
<!-->
<link rel="stylesheet" href="<?php echo $this->templateurl(); ?>/css/ie-rtl.css" type="text/css" />
<!-->
<?php endif; ?>
remove the php conditional tags so after editing it should be:
<link href="<?php echo $this->templateurl(); ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
<!-->
<link rel="stylesheet" href="<?php echo $this->templateurl(); ?>/css/ie8-rtl.css" type="text/css" />
<!-->
<!-->
<link rel="stylesheet" href="<?php echo $this->templateurl(); ?>/css/ie-rtl.css" type="text/css" />
<!-->
Hope this also helps