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.
Use colon only one time
#selector:after {
display: none;
}