Q2A Market - Support

We are here to provide you support for Q2A Market premium and free products. If you have any issue in installation, option settings or any bug you found. Please create a ticket. We would try to get back to you as soon as possible.

All activity widget bug in RTL

The "All activity" widget has a bug in RTL; this widget has two columns but columns are display from left to right in RTL (first column is on left and second column on right). This is wrong; the expected behaviour should be: first column on right and second column on left.

Q2A Website
opened on Jul 1 in Max Control

I am sorry but I couldn't understand which two columns you are having trouble and also there is not All activity widget but there is an All Activity page. So you mean by the page?

Also if you can post any Image link or direct URL that would be easy to understand the bug.

It is actually "All Activity Count" widget. Please see the below image, I have put the columns insidered boxes. The position of these two columns should be reversed.

1 Answer

 
Best answer

To fix this make modification in base-style-rtl.css

Line #862

Find

.qa-activity-count-item {
    width: 50%;
    float: left;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 11px;
    margin: 0;
    padding: 5px;
    color: #525252;
}

Replace

.qa-activity-count-item {
    width: 50%;
    float: right;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 11px;
    margin: 0;
    padding: 5px;
    color: #525252;
}
answered Jul 2
selected Jul 2

Great. Fixed. Thanks