Hey,
I add rtl template into Asp.net Core & have issue in Keenicon not working fine while using rtl, but working fine while switch to ltr
Hey,
I use Boostrap v8.3.1 & the below my added css & Not working on RTL but working fine in LTR
<!--begin::Global Stylesheets Bundle-->
<link href="~/backend/css/plugins.bundle.css" rel="stylesheet" type="text/css" asp-append-version="true" />
<link href="~/backend/css/style.bundle.css" rel="stylesheet" type="text/css" asp-append-version="true" />
@if (isRTL)
{
<link href="~/backend/css/plugins.bundle.rtl.css" rel="stylesheet" asp-append-version="true" />
<link href="~/backend/css/style.bundle.rtl.css" rel="stylesheet" asp-append-version="true" />
}
<!--end::Global Stylesheets Bundle-->
Hi,
In our Metronic 8 Starterkit to switch to the RTL version, you can simply set the "Direction": "rtl",
property in _keenthemes/config/themesettings.json, then restart the application.
If your project isn't based on our Starterkit, please make sure that you have added the following attributes to the html
tag.
<html dir="rtl" direction="rtl" > ... </html>
Hi,
Can you please confirm the Metronic version are you using ? Metronic v8.3.1 ?
When you include RTL css have you included the default CSS as well ? The RTL css is additional CSS while the default CSS is required.
Regards,
Sean