I want menu item in right side for Arabic Language.

0
Hi, I am facing one issue. When I change the language of my app from English to Arabic then sub menu item is coming in left side. It should come in right side for Arabic language For Arabic Language     For English Language,   Can someone help on this?
asked
2 answers
3

Hello Sweety,

I have faced the similar Issue in my project and solved it using the following css code
 

.mx-navigationtree-collapsed ul {
    left: auto !important;
    margin-left: 52px !important;
    margin-right: 52px !important;
}

 

Hope my answer helps. Reach me out for any queries.

answered
3

Hi, 

 Arabic language will be written from right to left due to this you are facing this issue. From given the container text getting started from last to front, so you should customized that layout accordingly using CSS.

answered