Hi,
If you want to hide member-slogan in Teams : style-1 of JA ACM module, you can use this way
Open templates/uber/local/acm/teams/css/themes/asyl/style.css file
.acm-teams .team-items .item .img-intro p {
bottom: 0;
background-color: rgba(33, 91, 166, 0.7);
color: #ffffff;
font-size: 20px;
left: 0;
margin-bottom: 0;
position: absolute;
padding: 26px;
transform: translateY(100%);
-webkit-transform: translateY(100%);
-webkit-transition: 600ms;
-o-transition: 600ms;
transition: 600ms;
}
to
.acm-teams .team-items .item .img-intro p {
display: none;
bottom: 0;
background-color: rgba(33, 91, 166, 0.7);
color: #ffffff;
font-size: 20px;
left: 0;
margin-bottom: 0;
position: absolute;
padding: 26px;
transform: translateY(100%);
-webkit-transform: translateY(100%);
-webkit-transition: 600ms;
-o-transition: 600ms;
transition: 600ms;
}
For the link to contact page, I’m afraid that you have to make a custom work in this case. However, the custom work is out of JA support scope.
Regards