Hi, I want to make the title and description font bigger inside a team member element. How can I do that?
Hi DROR!
Thank you for coming back.
Use the following and adjust the values:
.avia-team-member .team-member-name {
font-size: 25px !important;
}
.avia-team-member .team-member-job-title {
font-size: 18px !important;
}
.avia-team-member p {
font-size: 20px !important;
}
Best regards,
Günter
Thanks. I added the code and it worked but the description text seems to be too dense – http://screencast.com/t/WxBm7KV5q – how can I make it look like here – http://screencast.com/t/DQljuWXZ ?
Hey!
Thank you for coming back.
Try the following and adjust the value of line-height:
.avia-team-member p {
font-size: 20px !important;
line-height: 30px;
}
Regards,
Günter
Great. Thanks :)