Forum Discussion
MaverickCS5
Apr 12, 2024Copper Contributor
Remove Read Only icon from list
Hi, I'm currently using an embeded list to display some status messages so it updates in real time, however it will show read-only icons for public users (which due to permissions it will). Is th...
Aishamustaq340
Apr 12, 2024Copper Contributor
To hide the read-only icons for public users in your embedded list, you can use CSS code to target and hide those icons specifically. Here's an example of how you can do it: ```css /* Hide read-only icons */ .public-user .read-only-icon { display: none; } ``` In this code: - `.public-user` is the class name you can use to target elements specific to public users. - `.read-only-icon` is the class name of the icons you want to hide. By setting `display: none;`, you're instructing the browser not to display those icons for public users. Make sure to replace `.public-user` with the actual class name or selector that identifies public users in your HTML markup. For more help use https://wasuppgb.com/
- MaverickCS5Apr 12, 2024Copper Contributor
Aishamustaq340 Thank you. Would there be anyway to do this with JSON formatting on a list?