When using an RTL language, if you view the memberlist in responsive mode (screens less than 700px wide) the rank image is on the wrong side of the screen and has a line running through it.
I have added a screen shot to show this.
This can be solved by adding a rule to the bidi.css file to match the one in the responsive.css file.
File:
bidi.css
|
Find:
/* User profile |
----------------------------------------*/
|
Add Before:
.rtl table.responsive span.rank-img {
|
float: none; |
padding-right: 0; |
padding-left: 5px;
|
}
|