This is not a duplicate question because I am trying to override css of a external image with a href value.
I have this external image put all over a wordpress website but I cannot figure out a way to change image width with css. The problem is I cannot alter the code here.The "wpd_wrapper" class is used on other places on the website as well.
I want to make the image width 110px
<div class="wpb_wrapper">
<a href="https://geo.itunes.apple.com/us/album/nuh-strange-face-single/id392890270?at=11lSfu&mt=1&app=music" style="display:inline-block;overflow:hidden;background:url(http://linkmaker.itunes.apple.com/images/badges/en-us/badge_music-lrg.svg) no-repeat;width:162px;height:40px;"></a>
</div>
I have tried selecting the image with [attribute] like below. But it is not working. What Am I doing wrong here?
img[url*="badge_music-lrg.svg"] {
width: 110px !important;
}