It seems that the team members part are left justified when using 1 or 2 team members instead of centered like on this page
http://kriesi.at/themes/enfold/pages/about-us/
Could you let me know what css to center just two 300px profile boxes, that is on a max width 1200+ size page.
thanks in advance
EDIT: I found a way to do this, let me know if that is the simplest
1/5empty 1/3profile 1/3 profile 1/5empty
Seems to center about right if you wanted to have a 300px image like on the demo but with only 2 team members
Nevermind I think I ll play with the width of the team members images instead of spending too much time trying to tweak the css
Hi!
You can add this on Quick CSS to center align the team member elements.
.avia-team-member {
text-align: center;
}
Best regards,
Ismael
Thanks but that also centers the bio so that does not work /sadface
Any idea on how to center the title but not the bio/description
Hey!
You can try this:
.avia-team-member {
text-align: center;
}
.team-member-description {
text-align: left;
}
Regards,
Ismael
Great, thanks again