basenine 8/29/2024 5:47:55 PM Hello Andrew, I hope you've been well. Here's some css which will do what you want:
#frm_1351677 > section > table > thead > tr > th:nth-child(n) > a{ pointer-events: none; cursor: not-allowed; }
#frm_1351677 --> this bit makes it specific to the TABLE - replace it with the table you're trying to amend... NOTE: this is NOT view specific. It will be active across all views in the whole table. To find the right #frm: --> right-click on the link --> Inspect Element (opens up development console) --> right-click on the element which starts with <a ...... --> copy selector path --> replace whatever numeral is in here: th:nth-child(n) and replace with 'n' (for example, th:nth-child(3) --> th:nth-child(n)) --> add it to the dbstyles.css file in Resources
No guarantees it won't mess something else up....I've only tested to see if it will do [mostly] what you've requested 😉
Best regards Brett
|