RTL Version

Quick Setup

Right to Left (RTL) version of Start can be easily setup with special Gulp task that depends on Gulp RTLCSS  and RTLCSS  tools.

  1. Run gulp task with --rtl=trueflag in theme/tools/folder to generate the RTL versions of CSS files.
    gulp --rtl=true
    
  2. Switch CSS files to their RTL versions by adding *.rtl.csssuffix to files that have RTL versions generated in assets folder:
    <!--begin::Page Vendor Stylesheets(used by this page)-->
    <link href="assets/plugins/custom/prismjs/prismjs.bundle.rtl.css" rel="stylesheet" type="text/css" />
    <!--end::Page Vendor Stylesheets-->
    
    <!--begin::Global Stylesheets Bundle(used by all pages)-->
    <link href="assets/plugins/global/plugins.bundle.rtl.css" rel="stylesheet" type="text/css" />
    <link href="assets/css/style.bundle.rtl.css" rel="stylesheet" type="text/css" />
    <!--end::Global Stylesheets Bundle-->
    
  3. Add the language direction attribute to the root HTML tag:
    <html direction="rtl" dir="rtl" style="direction: rtl">
    
  4. Plugins that come with their own RTL support can be skipped from the general RTL conversion by adding them into the skip list in the gulp config file as shown below:
    "compile": {
        "rtl": {
            "enabled": false,
            "skip": [
                "select2",
                "line-awesome",
                "fontawesome5",
                "nouislider",
                "tinymce",
                "sweetalert2"
            ]
        }
    }
    
    For more info about the gulp config file please check - Gulp Build Options.
Start provides basic RTL support using the mentioned automation tools and further adjustments of the theme and related 3rd-party plugins for the full RTL support are responsibiliy of buyers.
Upgrade To Pro