You need to sign in to do that
Don't have an account?

Change button text using CSS in Community
Hi,
I'm using a CSS to style one of my client's community.
I have a requirement, where they want to replace the text on the 'Attach File' button of the Notes and Attachments related list to 'ADD ATTACHMENT'.
I'm trying to do so but with no luck, here's my CSS code :
input[name="attachFile"] {
visibility: hidden;
position: relative;
}
input[name="attachFile"]:after{
position: absolute;
content: 'ADD ATTACHMENT';
visibility: visible;
}
Anyone ?
I'm using a CSS to style one of my client's community.
I have a requirement, where they want to replace the text on the 'Attach File' button of the Notes and Attachments related list to 'ADD ATTACHMENT'.
I'm trying to do so but with no luck, here's my CSS code :
input[name="attachFile"] {
visibility: hidden;
position: relative;
}
input[name="attachFile"]:after{
position: absolute;
content: 'ADD ATTACHMENT';
visibility: visible;
}
Anyone ?
All Answers
That was the only thing I couldn't do.
Guess you can't do everything..