How to Convert html template to right to left (RTL) format
Hi, this is Tech Book and you are viewing post regarding converting theme template in blogger from LTR to RTL direction. Almost every blogger user knows about LTR and RTL. LTR stands for Left to Right, and RTL stands for Right to Left. This sometimes very simple for some templates but may be difficult for others. In most of the cases, this trick works. You need to simple modify starting code like below. In this code, you can see the dir tag to set the theme direction to LTR or RTL.
LTR direction is used for English or for the languages which are written in Left to Right direction. Following languages use LTR:
- Afar
- Ligurian
- Abkhazian
- Lombard
- Afrikaans
- Lingala
- Akan
- Laotian
- Alemannic
- Laz
- Amharic
- Lithuanian
- Aragonese
- Latvian
- Angal
- Banyumasan
- Anglo-Saxon / Old English
- Malagasy
- Assamese
- Mandarin
- Asturian
- Marshallese
- Avar
- Maori
- Awadhi
- Minangkabau
- Aymara
- Macedonian
- Azerbaijani
- Malayalam
- Bashkir
- Mongolian
- Bavarian
- Moldovan
- Samogitian
- Marathi
- Bikol
- Malay
- Belarusian
- Maltese
- Belarusian (Taraškievica)
- Creek / Muskogee
and 80 other languages.
On the other hand, following languages are among top languages which are written Right to Left language direction:
- Arabic.
- Aramaic.
- Azeri.
- Dhivehi/Maldivian.
- Hebrew.
- Kurdish (Sorani)
- Persian/Farsi.
- Urdu.
Here is a video tutorial for converting any LTR template to RTL (URDU) with Jameel Fonts.
Straight to the topic, you can use following code to convert any LTR template to RTL in blogger. Just use dir="rtl" in HTML tag like this code:
<!DOCTYPE html>
<html lang="en" dir="rtl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tech Book</title>
<link href="css/bootstrap.css" rel="stylesheet">
At the end, it is suggested to keep visiting this website for more useful information and updates regarding blogger and others.
Comments