Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

can't make the textbox work like RTL

hi!
for some reason my message textbox input is LTR although the posts come out RTL
could you please help me make the input RTL as well?
( i've tried to add .textbox { direction: rtl; } to the css)

Comments

  • Options

    you need to add the attribute dir="rtl" to all text inputs. This could be tricky, you might use JavaScript to make it easier.

    grep is your friend.

  • Options

    actually this css should also work

    input, textarea{
      direction: rtl;
    }
    

    grep is your friend.

  • Options

    i've tried to add this to the themes css but it didn't work....in wich file do you think i should add dir="rtl"?

  • Options

    custom.css

    grep is your friend.

Sign In or Register to comment.