Hi,
I tried to make my site bi language by using joomfish.
The thing is that the 2nd language is Hebrew so it is RTL.
I’ve placed the following code in index.php just before the </head>
<?php
if($this->direction == 'rtl') : ?>
<link href="<?php echo $tmpTools->templateurl(); ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
<link href="<?php echo $tmpTools->templateurl(); ?>/css/colors/<?php echo strtolower ($tmpTools->getParam(JA_TOOL_COLOR)); ?>-rtl.php" rel="stylesheet"
type="text/css" />
<?php endif; ?>
What I wanted is to make changes on the luxury.css like changing #ja-splitmenu li from left to right. and saved the file as luxury-rtl.css
The problem is that when I switch to Hebrew nothing happens…
I appreciate your help.