How would I make the vertical spacing on the title that only have one word centered? For example Diversity is bottom justified. I would like it be centered if possible to slow better with the two word titles.
Hey Purepraxis,
Thank you for the inquiry.
Please try to add this css code to adjust the alignment of the tab titles. This may require adjustments on smaller screens.
.av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container, .av-tab-section-image {
width: auto;
}
.js_active .av-tab-section-tab-title-container {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
padding-right: 20px;
}
Best regards,
Ismael