Graham Quince Posted March 29, 2021 Share Posted March 29, 2021 Hi everyone, Here's a bit of CSS you can add to an HTML widget to hide the first three columns in the Data Viewer widget should you want to: <style> /* Hide first three columns in Data Viewer */ div[data-content-uuid="WIDGET_UUID"] .dataviewer-list th:nth-child(2), div[data-content-uuid="WIDGET_UUID"] .dataviewer-list th:nth-child(3), div[data-content-uuid="WIDGET_UUID"] .dataviewer-list th:nth-child(4), div[data-content-uuid="WIDGET_UUID"] .dataviewer-list td:nth-child(2), div[data-content-uuid="WIDGET_UUID"] .dataviewer-list td:nth-child(3), div[data-content-uuid="WIDGET_UUID"] .dataviewer-list td:nth-child(4){ display: none !important; } </style> Quote Link to comment Share on other sites More sharing options...
gbligh Posted September 12, 2022 Share Posted September 12, 2022 How do I hide just the first 2 columns? @Graham Quince Quote Link to comment Share on other sites More sharing options...
Graham Quince Posted September 12, 2022 Author Share Posted September 12, 2022 Remove the lines that end in (4) But make sure your last time includes a comma Quote Link to comment Share on other sites More sharing options...
ADT Posted September 12, 2022 Share Posted September 12, 2022 6 hours ago, gbligh said: How do I hide just the first 2 columns? @Graham Quince There are no silly questions.... just questions..... 😜 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.