diff --git a/images/banner.png b/images/banner.png index 5838a13..4860f67 100644 Binary files a/images/banner.png and b/images/banner.png differ diff --git a/images/banner_beta.png b/images/banner_beta.png index 5335b54..1676d76 100644 Binary files a/images/banner_beta.png and b/images/banner_beta.png differ diff --git a/src/index.html b/src/index.html index 672c02f..5f09d70 100644 --- a/src/index.html +++ b/src/index.html @@ -125,6 +125,9 @@
diff --git a/src/janin.currency.js b/src/janin.currency.js index 4dc4bf8..3e58b10 100644 --- a/src/janin.currency.js +++ b/src/janin.currency.js @@ -35,6 +35,8 @@ janin.currency = { // Switch currency useCurrency: function(index) { janin.selectedCurrency = janin.currencies[index]; + + document.getElementById("coinLogoImg").src = "logos/" + janin.selectedCurrency.name + ".png"; // Regenerate a new wallet when not expensive ninja.wallets.singlewallet.generateNewAddressAndKey(); diff --git a/src/main.css b/src/main.css index 55e8cf9..a64a8e4 100644 --- a/src/main.css +++ b/src/main.css @@ -93,6 +93,10 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); } .redText { color: red; } .greenText { color: green; } +#coinLogo { width: 55px; height: 55px; padding: 10px; position: absolute; top: 2px; left: 10px; } + +#coinLogoImg { width: 100%; height: 100%; } + #main { position: relative; text-align: center; margin: 0px auto; width: 1005px; } #logo { width: 578px; height: 80px; } @@ -181,7 +185,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); } #currencyddl { margin: 20px; position: absolute; right: 0; top: 60px; width: 320px; font-size: 14px; } #currencyddl select { font-size: 14px; } -.banner { font-size: 46px; text-shadow: 1px 1px 3px #000; color: #FF9547; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); text-align: left; } +.banner { font-size: 46px; text-shadow: 1px 1px 3px #000; color: #FF9547; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); text-align: left; position: relative; } #donateqrcode { padding: 8px; position: absolute; left: 550px; margin: 25px; border: black solid 1px; } #donatelist { padding: 20px; }