div.employeeLoginLink.salesforceIdentityEmployeeLoginLink2 {
color: black;
}
1 Antwort
I'm sure this is too late for your purposes, but for anybody else out there looking for the solution, please see below. This works as of April 2022 in a Customer Service template community. To target the specific link for Employee Login (example link color and background, but could make it transparent)
.salesforceIdentityEmployeeLoginLink2 a {
color: rgb(88, 126, 186) !important;
background-color: rgb(249, 248, 247);
}
To target the entire section, in which the Employee Login link resides, use this instead:
.salesforceIdentityEmployeeLoginLink2 {
color: rgb(88, 126, 186) !important;
background-color: rgb(249, 248, 247);
}
Can also follow a similar pattern for the "Forgot Password?" link, among other examples
.salesforceIdentityLoginForm2 a {
color: rgb(88, 126, 186) !important;
}