I need some assistance with WordPress and CSS. By default, WordPress applies CSS to all posts and pages. However, I want to disable specific CSS styles for certain objects on the page.
For example:
When I insert a table, it automatically inherits the CSS styling. What I am trying to achieve is to have the table display with the default HTML style, without any CSS applied. Here is an illustration:
<css do not apply here>
<table>
.
.
.
</table>
</css>
I attempted to modify the CSS directly, but it is complex and extensive. Is there a simpler way to accomplish this?