How to remove or disable before and after pseudo classes?

Viewed 31080

This seems very trivial but I couldn't figure it out. Simply overriding it with display:none doesn't work on IE8.

#selector::after {
    display: none;
}

I am modifying a theme that's using before and after pseudo classes to add image sprites.

2 Answers
Related