I have seen a number of posts similar to this, but I haven't found anything that works for me.
I have an Ionic2 application, where I have a style I want to get rid of.
This is what I can see..
and I wish to get rid of the background-image
It would be good to be able to do it using an Id (I only want this on this one element, and not others that may have these classes), but I have also tried the following...
.ion-header.header.header-md:after{
background-image: none;
}
I don't know why the following does not work.
Anyone have any suggestions?
Thanks in advance!

::after(CSS3 syntax)? Also, are your styles loaded before or after themain.css?ion-headeris an element, not a class.