Looking for feedback for people who have worked on projects in both LTR and RTL
Hi there!
I am part of the maintainer team for Bourbon and Neat. Neat grid has an upcoming 2.0.0 release that is currently in beta. While it wont be in the initial release, I am looking to add some basic ltr/rtl support. However, I have not personally worked on any rtl projects. It would be awesome to get some feedback on what a feature like this might look like and peoples past experiences.
Read moreCreating rtl themes
Hello everyone,
I am currently working on a base theme and am looking into adding rtl support. Has anyone else had major issues with ie6,ie7, and ie8 while using something like:
body { direction: rtl; }
Applying the direction attribute to the html or body tag seems to cause a lot of issues in earlier versions of ie. I ended up using doing this:
/* apply rtl to the html tag so the scrollbar is on the correct side /
html {
direction: rtl;
}
/ set the language direction back to left to right to avoid breaking the layout in ie. */
body {
direction: ltr;
}