There are lots of questions regarding switching and changing the direction of language but none of 'em is the answer for my question.
All right... What I need is the caption switch when I choose different languages with different directions.
So I have this code below to define the link, image and caption in my html:
<div id="slider" class="nivoSlider">
<a href="#"><img src="#" alt="" title="<?=_TEST?>" /></a>
</div>
Now all languages share the same title, say <?=_TEST?>, as for this example.
And then I open this jquery.nivo.slider.js and look up "caption" and I get these lines:
//Create caption
slider.append(
$('<div class="nivo-caption"><p></p></div>').css({ display:'none', opacity:settings.captionOpacity })
);
//Process initial caption
if(vars.currentImage.attr('title') != ''){
var title = vars.currentImage.attr('title');
if(title.substr(0,1) == '#') title = $(title).html();
$('.nivo-caption p', slider).html(title);
$('.nivo-caption', slider).fadeIn(settings.animSpeed);
}
and:
//Process caption
if(vars.currentImage.attr('title') != ''){
var title = vars.currentImage.attr('title');
if(title.substr(0,1) == '#') title = $(title).html();
if($('.nivo-caption', slider).css('display') == 'block'){
$('.nivo-caption p', slider).fadeOut(settings.animSpeed, function(){
$(this).html(title);
$(this).fadeIn(settings.animSpeed);
});
} else {
$('.nivo-caption p', slider).html(title);
}
$('.nivo-caption', slider).fadeIn(settings.animSpeed);
} else {
$('.nivo-caption', slider).fadeOut(settings.animSpeed);
}
I'm pretty sure that it's all related to this if statement. I was just wondering if there would be any way, say an else statement or whatever, to define another class for example .nivo-caption-rtl and do the necessary changes on CSS.
BTW are there any other ways other than changing the conditional ? Ummm... I dunno. Like making a specific class to the language file and force to align the text to left or right from there ? I tried to do so by defining the class below but it messed up everything:
define("_TEST","<p class="text-align: right" This is just a test");
Any help would be appreciated...