WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => WebsiteBaker Language Files => Topic started by: skepper on July 09, 2008, 09:13:30 AM

Title: Question: Hebrew RTL how ?
Post by: 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:
Title: Re: Question: Hebrew RTL how ?
Post by: kweitzel on July 09, 2008, 02:12:50 PM
via CSS in the stylesheet ...

cheers

Klaus
Title: Re: Question: Hebrew RTL how ?
Post by: proglot on July 28, 2008, 04:03:03 PM
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:
Code: [Select]
<body dir="rtl" lang="he-IL">
or you can modify CSS by adding 'direction' property like:
Code: [Select]
body {
        direction: rtl;
...
}