PDA

View Full Version : Profile Sidebar to the Left?


djxcee
05-28-2008, 06:14 AM
I would like to have the sidebars in the profile view to the left instead of the default right.
Anybody here know how to do so?

Lynne
05-28-2008, 03:10 PM
Go to the template "memberinfo_css" and find this:
#content_container {
width:100%;
float:$stylevar[left];
margin-$stylevar[right]:-256px;
}
#content {
margin-$stylevar[right]:256px;
}
#sidebar_container {
width:250px;
float:$stylevar[right];
}


Change it to this:
#content_container {
width:100%;
float:$stylevar[right];
margin-$stylevar[right]:-256px;
}
#content {
margin-$stylevar[right]:256px;
}
#sidebar_container {
width:250px;
float:$stylevar[left];
}