Mobile app version of vmapp.org
Login or Join
Kaufman565

: Arabic website - design for right to left languages I am working on a website in multiple languages, one of them is Arabic. Which makes things more fun .. As you know, in arabic and other

@Kaufman565

Posted in: #Arabic #WebsiteDesign

I am working on a website in multiple languages, one of them is Arabic. Which makes things more fun ..

As you know, in arabic and other similar languages the text goes the other way, from right to left.. I am wondering what are the basics to consider when starting such a design?

What should I worry about that is specific to right to left languages ?

What would be some standard fonts to work with?
(something like Arial, Helvetica, sans-serif but for arabic languages ..)

Where can I get information about users that use this as an everyday browsing experience?

If you know, examples of clean, modern looking arab websites would be great.
All I can find is old and very confusing designs(I do not speak Arabic).

Any other advice, guidelines and helpfull information is welcome :) Thank you

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Kaufman565

1 Comments

Sorted by latest first Latest Oldest Best

 

@Radia289

With RTL language sites, we need to change a fair many things about a LTR site.


Assign <html dir="rtl">. For more information on what that does, check this article or look it up. There is also a CSS direction property that changes the text flow of block level elements and text but does not affect the layout of the page.
Mirror your layout. This means things that are usually on the left should be on the right and vice versa. Some gotchas are using floats (they will be reversed), forgetting to change the positioning of some ::before and ::after elements, and not changing images themselves that need to be changed. Creating a work around like .left { float:right !important; } for some of these may be advantageous.

www.mikedoesweb.com/wp-content/uploads/2014/04/mirror-site.png

Fonts: The only fonts by default on most computers are usually Ariel, Verdana, and Tahoma (Tahoma is most common). Google has an "Early Access Program", of which many are RTL, for potential fonts that it's adding to its library of fonts. If they are used enough, Google will add them to their collection permanently (so use them!). You can see a demo of how the different Google-hosted Arabic fonts look here.
Arabic characters are shorter and wider than Latin characters. This gives a different visual appearance to the website. Keep this in mind when designing.
As with any foreign culture, be careful with iconography assumptions and content. Know your audience.
Arabic readers will put up with reading English/Western numbers, but if the text is in Arabic (and thus RTL), so should the numbers also be.
Make sure your translations are correct!
The web culture is different. Some of the answers in this interview provide more information about it, but I'd recommend talking to the people who will be using it to find out what's accepted/expected and what's not. From what I can tell, they're more open to trying new things, which could be a huge plus, and have a bit less standards across the board. This may vary from country to country as well.


A pretty good example of a RTL site is CNBC's Arabian site. It's not cutting-edge-new, but it does its job pretty well. For a more modern one you can check out this site or this election website.

It's interesting for me to see how everything is flipped from what I'm used to including the moving news update at the bottom and the important content. For more examples, check out the very bottom of the interview page linked previously.

If you're a developer or want to help a team of developers, I recommend taking a look at some tips for creating a multilingual web page put together by the BBC team.

Much of this post was pulled from this article as well as this one and the links in them.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme