2007-02-20, 04:45 PM
(This post was last modified: 2007-07-07, 08:38 AM by Dennis Tsang.)
Below details the changes necessary in order the make your forum right-to-left.
In the language file inc/languages/*yourlanguage*.php you should see $langinfo['rtl'] = 0; change it to $langinfo['rtl'] = 1;
Then you need to edit the theme you're using to find (under the Page Container options):
Change it to:
Then in the Additional CSS area find:
Replace with:
In the language file inc/languages/*yourlanguage*.php you should see $langinfo['rtl'] = 0; change it to $langinfo['rtl'] = 1;
Then you need to edit the theme you're using to find (under the Page Container options):
text-align: left; /* IE 5 fix */
Change it to:
text-align: right; /* IE 5 fix */
Then in the Additional CSS area find:
.float_left {
float: left;
}
.float_right {
float: right;
}
Replace with:
.float_left {
float: right;
}
.float_right {
float: left;
}