When using an RTL language, the quick links burger menu icon in responsive mode has a different size margin than when using a standard LTR language, this can be solved by adding a rule to the bidi.css file to match the one in the common.css file.
File:
bidi.css
|
Find:
.rtl ul.rightside {
|
float: left; |
margin-left: -5px;
|
margin-right: 5px;
|
text-align: left;
|
}
|
Add Below:
.rtl ul.linklist li.responsive-menu {
|
margin: 0 0 0 5px; |
}
|