LTR and RTL on the same page.
Hello.
I Need both LTR and RTL on the same page.
How can I use RTLCSS String Maps in Metronic 8 ?
Replies (3)
Hi,
Our current build tool (gulp and webpack) does not support this feature, both LTR and RTL within the same CSS file. At the moment, the CSS need to be loaded separately.
Thanks
Do you have any idea to show metronic 8 File manager as LTR in the RTL version ?
Hi,
You can try to wrap the bootstrap components in this file to make a similar example in the guide.
src/sass/components/components.scss
Then run the gulp compile
gulp --demo1 --rtl
Import the file;
demo1/dist/assets/plugins/global/plugins.bundle.rtl.css
Each selector in the CSS files will be prepended by .ltr, and .rtl for RTL files.
Thanks