I am trying to hide columns and headers of table Id 'Customers' like below
table#Customers tr td:nth-child(3), tr td:nth-child(6) {
display: none;
}
it works for the table with Id but same time it effects on other page which has table with column 3 and column 6.
It hides for other page also ( the other pages doesn't have table with Id 'Customers').
What is wrong here?
Go to the complete details ...