There are two buttons generated dynamically (not within my control) that I would like to customize with different images. Since I can't actually change the button code, I believe I will need to utilize CSS to achieve this based on the CSS values. The current button code is:
<button type="submit" class="btn btn-default" name="provider" value="Facebook" title="Log in using your Facebook account.">Facebook</button>
<button type="submit" class="btn btn-default" name="provider" value="Twitter" title="Log in using your Twitter account.">Twitter</button>
The images I'd like to use for these buttons are: Facebook-Login.png and Twitter-Login.png. If it's possible to accomplish this through CSS, could someone kindly provide the necessary code? Thank you, Chris.