hello

i use HEBREW lang. so i need the mune be in the right side or top side
how can i move the menu page to Right side / top side ?
and how i make all text to be RTL ?

you can modify template you using by adding dir="rtl" to BODY tag like:
<body dir="rtl" lang="he-IL">
or you can modify CSS by adding 'direction' property like:
body {
direction: rtl;
...
}