Disabling css styles
-
I created a simple table with one row. In this row, I highlighted the first cell in yellow and saved the table. Later I removed the selection, but now I have styles appearing in the page code all the time.
<style id="wpdt-custom-style-17"></style>
<style>
/* th background color */
.wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes,
.wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th,
.wpdt-c .wpDataTablesWrapper table.wpDataTable thead th,
.wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting {
background-color: #FEEA33 !important;
background-image: none !important;
}
</style>How can I remove and completely disable styles in this and necessarily on other tables so that they are not shown on the pages at all?
By the way, this style insertion does not pass code validation https://validator.w3.org/
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.