MyBB Community Forums

Full Version: Making your forum Right-To-Left
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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):
	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;
}
I did all you said but my table headers are still left aligned. The collapse buttons are in correct position but texts are not.

What can i do?

I added a picture of my forum to attachment.
themes

global.css

change left to right

worked for me