Payment Icons Not Displaying Properly

I have to edit my payment icons after every upgrade. Recently they have converted to the old (showing 2CO in place of American Express and Discover), even though there wasn’t a recent upgrade. I am trying to change them back to show Amex and Discover but no matter what I do, they aren’t displaying. Just the 2CO is in place of those two. The other ones show normally (Visa, PayPal and Mastercard).



I use the Basic theme.



Here’s what’s in my templates/blocks/static_templates/payment_icons file:

<br />
{** block-description:tmpl_payment_icons **}<br />
<div class="payment-icons"><br />
	{hook name="index:payment_icons"}<br />
	<span class="payment-icon american-express">&nbsp;</span><br />
	<span class="payment-icon paypal">&nbsp;</span><br />
	<span class="payment-icon mastercard">&nbsp;</span><br />
	<span class="payment-icon visa">&nbsp;</span><br />
	<span class="payment-icon discover">&nbsp;</span><br />
	{/hook}<br />
</div><br />

```<br />
<br />
And here's what's in my design/themes/basic/css/base file:<br />
```php
<br />
.payment-icon.2checkout {<br />
    background-position: 0px 0px;<br />
}<br />
.payment-icon.google-checkout {<br />
	background-position: -100px 0px;<br />
}<br />
.payment-icon.mastercard, .cc-icon .mastercard {<br />
	background-position: 0px -100px;<br />
}<br />
.payment-icon.paypal, .cc-icon .paypal {<br />
	background-position: -100px -100px;<br />
}<br />
.payment-icon.visa, .cc-icon .visa {<br />
	background-position: -200px 0px;<br />
}<br />
.payment-icon.american-express, .cc-icon .american-express {<br />
	background-position: -100px -200px;<br />
}<br />
.payment-icon.discover, .cc-icon .discover {<br />
	background-position: -200px -200px;<br />
}<br />
.cc-icon .visa-electron {<br />
	background-position: -200px -100px;<br />
}<br />
.cc-icon .maestro {<br />
	background-position: 0 -200px;<br />
}<br />

```<br />
<br />
Attached is a screenshot of what's displaying on my site with these settings.[attachment=9206:payment-icons.PNG]<br />
<br />
What am I missing, besides some hair from the frustration?<p><a href="127.0.0.1/uploads/monthly_03_2015/post-10216-0-64292300-1425995012.png">payment-icons.PNG</a></p>

Please replace:



 




and



 




with



 




and



 

That solved it, thank you!