Categories and Premium at the left

Djack

Member
Hi,
How can i put the Categories, premium and google translation menu to the left?
I've searched in the different .css file but i didn't find it.

Regards,
Djack
 

Mark

Administrator
Staff member
there is only 1 css file: skins/parabola/screen.css

find:
Code:
#main {
    margin-right: 310px;
}

#sidebar {
    float: right;
    width: 280px;
    padding: 10px;
    border-left: 1px solid #ccc;
}
change to:
Code:
#main {
    margin-left: 310px;
}

#sidebar {
    float: left;
    width: 280px;
    padding: 10px;
      border-right: 1px solid #ccc;
}
that should do it.
 
Top