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 ?
:roll:
via CSS in the stylesheet ...
cheers
Klaus
Quote from: skepper on July 09, 2008, 09:13:30 AM
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 ?
:roll:
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;
...
}