If using an RTL language and viewing a topic which includes quotes, the block quote cite (username and time) are next to each other on the same side rather than on each side like in the standard LTR languages.
This is due to a missing float rule in the bidi.css file.
I have added screen shots of both LTR and RTL to show the problem.
File:
bidi.css
|
Find:
.rtl blockquote cite:before, .rtl .uncited:before {
|
padding-left: 5px;
|
}
|
Add Below:
.rtl blockquote cite > span {
|
float: left; |
}
|