PDA

View Full Version : User Profile Block


Raioneru
01-04-2012, 10:38 PM
First of all, thank you to whoever helps me and I apologize if I posted this on the wrong forum. Just 3 "questions"

o1. I'm trying to move around the blocks on the user profiles. Instead of having the picture, information, groups, et cetera to the left I'm trying to move it to the right.
o2. Also, I want to change the looks of the blocks so if anyone can point me to the right file I'll really appreciate it.
o3. And last, I also want to change the look of the profiles on post (http://vvcap.net/db/6OOjOD8Us2bgwiq3Kgz-.png)

Thanks.

Lynne
01-05-2012, 05:12 PM
Try something like this in additional.css (you may need to tweek it for your site):
#sidebar_container.member_summary {
clear: left;
float: right;}
#userprof_content_container {
float: none;
margin-right: 260px;
margin-left: 0;
}

Use CSS to change the looks of the blocks. I'd suggest using firebug to help out with this.

Postbit looks can also be changed via CSS.

Raioneru
01-05-2012, 07:40 PM
Try something like this in additional.css (you may need to tweek it for your site):
#sidebar_container.member_summary {
clear: left;
float: right;}
#userprof_content_container {
float: none;
margin-right: 260px;
margin-left: 0;
}

Use CSS to change the looks of the blocks. I'd suggest using firebug to help out with this.

Postbit looks can also be changed via CSS.

Thank you Lynne, I'll look into the firebug, as for the code it worked perfectly.