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.

Wrong position of text in footer in RTL

In footer, there are two items (well, there could be more items):

  1. Send feedback link
  2. "Powered by Question2Answer ..." text

in LTR, 1 is placed on left and 2 is placed on right. I expected the opposite thing in RTL (1 placed on right and 2 placed on left) but that is not the case. It currently positions 1 and 2 same as LTR mode. How could I fix this?

Note: If you are looking at my q2a website, I deactivated item 2 so you only see 1 on the left hand side which really should be on right.

Q2A Website
opened on Jul 2 in Max Control

1 Answer

 
Best answer

qa-theme/MaxControl/in css/core.css

Line #675

Find

.qa-nav-footer-list {
    float:left;
    list-style-type:none;
    margin:0;
    padding:0;
}
.qa-footer-left{
    float:left;
}

Replace

.qa-nav-footer-list {
    float:right;
    list-style-type:none;
    margin:0;
    padding:0;
}
.qa-footer-left{
    float:right;
}

Line #692

Find

.qa-nav-footer-item {
    float:left;
    margin:0 12px;
}

Replace

.qa-nav-footer-item {
    float:right;
    margin:0 12px;
}

Line #700

Find

.qa-attribution {
    float:right;
    margin-left: 10px;
}

Replace

.qa-attribution {
    float:left;
    margin-right: 10px;
}
answered Jul 2
selected Jul 4

Thanks. Fixed.