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.

TWO RTL bugs in Max Control Theme

I think there are two bugs in Max Control theme for displaying "list of users" and "list of tags". Both are aligned left but in RTL, they should be aligned to the right.

How can these be fixed?

Q2A Website
opened on Jun 30 in Max Control

1 Answer

 
Best answer

Do following to resolve this issue

File: qa-theme/MaxControl/css/base-style-rtl.css

Line #1145

Find

.qa-top-tags-table {
    float:left;
    border-collapse:collapse;
    margin-bottom:1em;
}

Replace

.qa-top-tags-table {
    float:right;
    border-collapse:collapse;
    margin-bottom:1em;
}

Line #1164

Find

.qa-top-users-table {
    float:left;
    border-collapse:collapse;
    margin-bottom:1em;
}

Replace

.qa-top-users-table {
    float:right;
    border-collapse:collapse;
    margin-bottom:1em;
}
answered Jul 2
selected Jul 2

Thanks. That fixed it.