Graham Quince Posted March 29, 2021 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>
gbligh Posted September 12, 2022 Posted September 12, 2022 How do I hide just the first 2 columns? @Graham Quince
Graham Quince Posted September 12, 2022 Author Posted September 12, 2022 Remove the lines that end in (4) But make sure your last time includes a comma
ADT Posted September 12, 2022 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..... 😜
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now