Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
361 views
in Themes by
I want to set the right sidebar two left. How can I set it on left side?
Q2A version: 1.8.2

1 Answer

0 votes
by
edited by

this should work...

in your theme folder, in qa-styles.css

find

or just find the .qa-main {

@media (min-width: 980px) {

.qa-main {

width: 74.5%;

float: left;

}

change left to right.... 

and then find

or just find .qa-sidepanel {

@media (min-width: 980px) {

.qa-sidepanel {

width: 25%;

padding: 0;

float: right;

*zoom: 1;

}

change right to left 

...