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

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

  • actually this css should also work

    input, textarea{
      direction: rtl;
    }
    
  • 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"?

  • custom.css

Sign In or Register to comment.