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.

Users profile page in RTL languages

In RTL languages users profile should be from right to left. I mean the users avatar should be at right-hand column and activity by user at left-hand column.
Could you please help me?

Q2A Website math.irancircle.com
opened on Jul 27 in Max Control

1 Answer

Oh yeah, this I will modify in the core theme files and release it with next update.

However, you can fix it for now by adding below code to your custom.css

@media only screen and (min-width: 800px)
.qa-template-user .qa-part-form-activity, .qa-template-user .qa-part-message-list {
    float: left;
    width: 50%;
    padding-right: 10px;
}
@media only screen and (min-width: 800px)
.qa-template-user .qa-part-form-profile {
    float: right;
    width: 50%;
    padding-left: 10px;
}

If still doesn't work (only if doesn't work) than try to use below code

@media only screen and (min-width: 800px)
.qa-template-user .qa-part-form-activity, .qa-template-user .qa-part-message-list {
    float: left !important;
    width: 50% !important;
    padding-right: 10px !important;
}
@media only screen and (min-width: 800px)
.qa-template-user .qa-part-form-profile {
    float: right !important;
    width: 50% !important;
    padding-left: 10px !important;
}
answered Jul 27

Thank you for your answer. But non of them work for me.

Wonder why not working.. It is working at my dev site. Let me see once again.

Did you find any solution?

I need some input from you. When you tried above code. What result you are getting?

Nothing! It is exactly the same as that befor adding the code!