Right click protection message
tkdally
Registered Users Posts: 9 Beginner grinner
Hi everyone, I have been working hard to get my site ready for migration to the new SmugMug and I think I'm almost done - phew! There are just a couple of things I need to resolve and I was hoping you might be able to help. To keep things simple I will post them in different threads.
Can a line break be included in the right click protection message? I have found code to customize the message but what I'd like it to say it a bit too long for it to all be one block of text.
The code I am using is (credit):
I would appreciate any guidance you could provide.
My website is www.alisondodd.co.uk but it's still in legacy mode.
Can a line break be included in the right click protection message? I have found code to customize the message but what I'd like it to say it a bit too long for it to all be one block of text.
The code I am using is (credit):
/* Custom Right-Click Protection */
.sm-user-ui .sm-right-click-message:after {
content: 'Sentence number 1 is quite short. Sentence number 2 is a bit longer so I'd like to include a line break.';
}
/* Disable the default Right Click Protection Message */
.sm-user-ui .sm-right-click-message .sm-tooltip-content {
display: none;
}
.sm-user-ui .sm-right-click-message:after {
content: 'Sentence number 1 is quite short. Sentence number 2 is a bit longer so I'd like to include a line break.';
}
/* Disable the default Right Click Protection Message */
.sm-user-ui .sm-right-click-message .sm-tooltip-content {
display: none;
}
I would appreciate any guidance you could provide.
My website is www.alisondodd.co.uk but it's still in legacy mode.
0
Comments
Use "\A" where you want the new line to be. So it would look like:
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
The code I am using is:
Aha, try this instead. The key was to add the "white-space: pre;" part.
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations