PDA

View Full Version : Moving the Menu From Left to Right


joyceleong
Mon 7th Apr '08, 12:36am
Hi,

I have installed the VBulletin blog, and found that the menu (find blog, blog statistics, archive calendar, etc) is currently on the left side, I would like to move it to the right, can this be done?

Thanks.

Floris
Mon 7th Apr '08, 3:47am
This requires you to customize the templates, there's no global option for this as a switch.

Shelby
Thu 10th Apr '08, 6:38pm
Here's the code to change the column from left to right. Edit the template BLOG.



#content_container {
width:100%;
float:$stylevar[left];
margin-$stylevar[right]:-206px;
background: $stylevar[page_bgcolor];
}

#content {
margin-$stylevar[right]:206px;
background: $stylevar[page_bgcolor];
}

#sidebar_container {
width:200px; float:$stylevar[right];
background: $stylevar[page_bgcolor];
}


Now that wasn't very hard was it.

Jose Amaral Rego
Thu 10th Apr '08, 8:43pm
Now the member needs to restrict image size....

joyceleong
Tue 15th Apr '08, 7:31am
Here's the code to change the column from left to right. Edit the template BLOG.



#content_container {
width:100%;
float:$stylevar[left];
margin-$stylevar[right]:-206px;
background: $stylevar[page_bgcolor];
}

#content {
margin-$stylevar[right]:206px;
background: $stylevar[page_bgcolor];
}

#sidebar_container {
width:200px; float:$stylevar[right];
background: $stylevar[page_bgcolor];
}
Now that wasn't very hard was it.


Thanks.