I am working on a WordPress website built on custom theme in which I want to ignore some specific CSS codes coming from wordpress plugin style sheet.
Here is the link for that wordpress plugin style sheet.
The CSS codes from the above Wordpress plugin style sheet which I want to ignore is:
@media screen and (max-width: 575.98px) .gv-table-view tr:first-of-type {
border-top: 1px solid #ccc;
}
@media screen and (max-width: 575.98px) .gv-table-view tr {
display: block;
position: relative;
padding: 1.2em 0;
overflow-x: auto;
}
.gv-table-view th, .gv-table-view td {
padding: .3em;
}
@media screen and (max-width: 575.98px) .gv-table-view tr td {
display: table-row;
}
@media screen and (max-width: 575.98px) .gv-table-view tr td:before {
content: attr(data-label);
font-weight: bold;
display: table-cell;
padding: 0.2em 0.6em 0.2em 0;
text-align: right;
width: 40%;
}
Problem Statement:
I want to ignore the above CSS codes in the mobile version of the following website url which is coming from wordpress plugin style-sheet. I am wondering where I need to go in my wordpress website in order to achieve that ?
If I take the above url in the mobile view, we can see the CSS codes mentioned above the problem statement.