PDA

View Full Version : from right to left


firestormpt
12-09-2010, 03:40 PM
Hi

I want align one forum at right side, and everything in style should do the same, because is one arabic forum.

I already put text from right to left but need to put all style, header, etc.

How can i do this ?

regards

calorie
12-09-2010, 03:56 PM
Untested but there is $stylevar['textdirection'] on vB3 that you could set to rtl instead of ltr if in a specific forum. You might be able to accomplish this with a plugin at global_start using $forumid so it'd be something like this:

// change X to the forum ID number
if ($forumid == X)
{
$stylevar['textdirection'] == 'rtl';
$show['rtl'] = 1;
}