Hi, is there a way to center the names and titles of our team members? They are very far off from the image, left justified and we would like them centered. Please advise, thanks!
Hey sharynt3,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .avia-team-member {
text-align: center;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Thanks Mike, it works. Can this also be done for the accordion element used for the bio below the image?
Hi,
The accordion toggle text can be centered but not the accordion “plus” icon. So to center the text and remove the “plus” icon try this css:
#top .av_toggle_section {
text-align: center;
}
#top .av_toggle_section .toggle_icon {
display: none;
}
.js_active #top .av_toggle_section .toggler {
padding: 9px 0;
}
Best regards,
Mike
Thanks Mike. Is it possible to only align the outside text to the center and not the inside once you click the plus sign?
Hi,
Try adding this css:
#top .av_toggle_section .toggle_content {
text-align: left;
}
Best regards,
Mike
Perfect! It works on the Team Members that have the accordion element, is there a workaround to not have the text centered if in just the Team Members element? See below for page difference, thanks.
Hi,
To text align the team-member-description to the left and keep the title centered we will need to use custom css for that page only because on some other pages you do want the team-member-description centered. Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top.page-id-2681 .avia-team-member .team-member-description {
text-align: left;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
Thank you, this works!
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike