In the Team showcase I would like to be able to make the text bigger. Also I would like to change color on the “see more” button.
1 Like
Hi there, @user20029 and welcome aboard
This code should do the trick:
/*Change font size and opacity of the button*/
.eapp-team-showcase-member-card-see-more-component {
font-size: 18px;
opacity: 0.8;
}
/*Change opacity on hover*/
.eapp-team-showcase-member-card-see-more-component:hover {
opacity: 1;
}
/*Change Button text color*/
.eapp-team-showcase-member-card-see-more-component span {
color: black;
}
/*Change arrow color*/
.eapp-team-showcase-member-card-see-more-component svg {
fill: black;
}
Please add this code to the Custom CSS field on the Style tab of your widget’s settings and let me know if it helped
1 Like