Toootim / Discussion

A general forum for site wide discussion and issue reports
0 stars 0 forks source link

Improve Hebrew/RTL CSS for about/more #24

Closed msappir closed 1 year ago

msappir commented 7 years ago

After uploading the new, Hebrew CoC (see #1), it became clear the site's CSS doesn't look great there. Anyone have suggestions on how to improve it?

elad661 commented 7 years ago

This selector .about-body ul, .about-body ol has margin-left: 20px, when it should be margin-right since we're writing Hebrew from right to left.

It can be easily fixed by adding the following to the custom css file:

.about-body .rtl ul, .about-body .rtl ol {
    margin-right: 20px;
    margin-left: 0;
}