Current time: 05-25-2012, 12:24 AM Hello There, Guest! (LoginRegister)


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Making your forum Right-To-Left
02-20-2007, 04:45 PM (This post was last modified: 07-07-2007 08:38 AM by Dennis Tsang.)
Post: #1
Making your forum Right-To-Left
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):
Code:
    text-align: left; /* IE 5 fix */

Change it to:
Code:
    text-align: right; /* IE 5 fix */

Then in the Additional CSS area find:
Code:
.float_left {
    float: left;
}

.float_right {
    float: right;
}

Replace with:
Code:
.float_left {
    float: right;
}

.float_right {
    float: left;
}
Visit this user's website Find all posts by this user
Quote this message in a reply
05-15-2008, 08:42 AM (This post was last modified: 05-15-2008 08:49 AM by sasan.j.)
Post: #2
RE: Making your forum Right-To-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.


Attached File(s) Thumbnail(s)
   
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us | MyBB | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication