Hello,
I am having a styling issue with two tables on my website. They can be found at the following URLs:
(1) https://nnnproperties.staging.wpengine.com/available-properties/national-nnn-listings-database/
(2) https://nnnproperties.staging.wpengine.com/client-resources/tenant-credit-ratings/
In order to style the first table (1) to span beyond the margins at a smaller font, I added the following code to my custom CSS:
@media (min-width: 1530px){
.dataTables_wrapper. {
zoom: 0.70;
width: 126%;
margin-left: -206px;
}
}
Unfortunately, that code is affecting the styling of table (2), which I don’t want it to do. I tried separating the CSS by their DIV IDs, but it’s not working for me. Do you have a solution so that the custom code above only affects table (1) and not table (2)? Thank you!!