Plugin keeps erasing CSS pseudo selectors – properties & values
-
I added the following custom CSS to the page,
.valueNumber { position: relative; background: #d2d2d2; border: 4px solid #d2d2d2; } .valueNumber:after { content: " "; position: absolute; height: 0; width: 0; right: 100%; top: 50%; border: solid transparent; pointer-events: none; border-color: #d2d2d2; border-color: rgba(210, 210, 210, 0); border-right-color: #d2d2d2; border-width: 20px; margin-top: -20px; } .valueNumber:before { content: " "; position: absolute; height: 0; width: 0; right: 100%; top: 50%; border: solid transparent; pointer-events: none; border-color: #d2d2d2; border-color: rgba(210, 210, 210, 0); border-right-color: #d2d2d2; border-width: 26px; margin-top: -26px; }
Each time the plugin would erase the above CSS code and it shouldn’t be doing that. I had to abandon using pseudo selectors in the plugin and add them via the theme Custom CSS instead.
Is there an intentional limitation coded into this plugin to keep us from adding certain custom CSS that we want?
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Plugin keeps erasing CSS pseudo selectors – properties & values’ is closed to new replies.