Currently, I am working on a CSS userstyle project. The issue that I am facing is the inability to make modifications to images in buttons coded within the html of a web page:
<button type="submit" class="btn btn-default"><img alt="Ico-plus" src="//s.theoldreader.com/assets/ico-plus-369f50fa00968793b3c2e814f3e55de5.png"><i class="fa fa-spinner fa-spin" style="display:none;"></i></button>
The closest solution I found using CSS was changing the background of the actual button element through this code:
.subscribe-button-container .subscribe .dropdown-menu li form .control-group button{background-image:url("http://i.imgur.com/XYHilSy.png");}
, rather than altering the image inside it. Is there a way to achieve what I intend to do, or are these images fixed within the HTML?
I have gone through the following resources: How to change an input button image using CSS?
Adding an image to submit button using CSS
Submit Button Image
All these references assume that I can edit the html code directly, whereas my only option is to override the css styles.