RTL Version
In order to have RTL mode enabled, update below line in function initSettings
in file ../assets/js/app.js
.
alreadyVisited = "rtl-mode-switch";
at line number 252.
And add lang="en"
and dir="rtl"
in html tag as shown below in the Views\shared\_Layout.cshtml
.
<html lang="en" dir="rtl">
and replace the reference of bootstrap.min.css
stylesheet file to bootstrap-rtl.min.css
and app.min.css
to app-rtl.min.css
in the Views\Shared\_head_css.cshtml
file.