replace the hidden h1 with a h1 around the banner
This commit is contained in:
parent
543160be09
commit
067be8a753
4 changed files with 10 additions and 10 deletions
10
index.html
10
index.html
|
@ -9353,7 +9353,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
||||||
#mousemovelimit { font-size: 16px; font-family: monospace; }
|
#mousemovelimit { font-size: 16px; font-family: monospace; }
|
||||||
.frontPageText { position: relative; }
|
.frontPageText { position: relative; }
|
||||||
|
|
||||||
h1 { display: none; }
|
h1 { margin: 0px; height: 91px; }
|
||||||
|
|
||||||
#keyarea { height: 250px; }
|
#keyarea { height: 250px; }
|
||||||
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
||||||
|
@ -9665,11 +9665,11 @@ h1 { display: none; }
|
||||||
<div id="coinLogo">
|
<div id="coinLogo">
|
||||||
<img id="coinLogoImg" src="logos/bitcoin.png" alt="Universal Open Source Client-Side Wallet Generator" />
|
<img id="coinLogoImg" src="logos/bitcoin.png" alt="Universal Open Source Client-Side Wallet Generator" />
|
||||||
</div>
|
</div>
|
||||||
<img src="images/banner_beta.png" alt="banner" />
|
<h1>
|
||||||
|
<img id="siteTitle" src="images/banner_beta.png" alt="Bitcoin Paper Wallet Generator" />
|
||||||
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 id="siteTitle">Bitcoin Paper Wallet Generator</h1>
|
|
||||||
|
|
||||||
<div id="currencyddl" class="hide">
|
<div id="currencyddl" class="hide">
|
||||||
Choose currency :
|
Choose currency :
|
||||||
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
|
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
|
||||||
|
@ -10280,7 +10280,7 @@ janin.currency = {
|
||||||
|
|
||||||
// Update title depending on currency
|
// Update title depending on currency
|
||||||
document.title = janin.currency.name() + "'s paper wallet generator";
|
document.title = janin.currency.name() + "'s paper wallet generator";
|
||||||
document.getElementById("siteTitle").innerHTML = janin.currency.name() + " Paper Wallet Generator";
|
document.getElementById("siteTitle").alt = janin.currency.name() + " Paper Wallet Generator";
|
||||||
|
|
||||||
// Regenerate a new wallet when not expensive
|
// Regenerate a new wallet when not expensive
|
||||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||||
|
|
|
@ -134,11 +134,11 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
<div id="coinLogo">
|
<div id="coinLogo">
|
||||||
<img id="coinLogoImg" src="logos/bitcoin.png" alt="Universal Open Source Client-Side Wallet Generator" />
|
<img id="coinLogoImg" src="logos/bitcoin.png" alt="Universal Open Source Client-Side Wallet Generator" />
|
||||||
</div>
|
</div>
|
||||||
<img src="images/banner_beta.png" alt="banner" />
|
<h1>
|
||||||
|
<img id="siteTitle" src="images/banner_beta.png" alt="Bitcoin Paper Wallet Generator" />
|
||||||
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 id="siteTitle">Bitcoin Paper Wallet Generator</h1>
|
|
||||||
|
|
||||||
<div id="currencyddl" class="hide">
|
<div id="currencyddl" class="hide">
|
||||||
Choose currency :
|
Choose currency :
|
||||||
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
|
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
|
||||||
|
|
|
@ -41,7 +41,7 @@ janin.currency = {
|
||||||
|
|
||||||
// Update title depending on currency
|
// Update title depending on currency
|
||||||
document.title = janin.currency.name() + "'s paper wallet generator";
|
document.title = janin.currency.name() + "'s paper wallet generator";
|
||||||
document.getElementById("siteTitle").innerHTML = janin.currency.name() + " Paper Wallet Generator";
|
document.getElementById("siteTitle").alt = janin.currency.name() + " Paper Wallet Generator";
|
||||||
|
|
||||||
// Regenerate a new wallet when not expensive
|
// Regenerate a new wallet when not expensive
|
||||||
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
ninja.wallets.singlewallet.generateNewAddressAndKey();
|
||||||
|
|
|
@ -49,7 +49,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
||||||
#mousemovelimit { font-size: 16px; font-family: monospace; }
|
#mousemovelimit { font-size: 16px; font-family: monospace; }
|
||||||
.frontPageText { position: relative; }
|
.frontPageText { position: relative; }
|
||||||
|
|
||||||
h1 { display: none; }
|
h1 { margin: 0px; height: 91px; }
|
||||||
|
|
||||||
#keyarea { height: 250px; }
|
#keyarea { height: 250px; }
|
||||||
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
||||||
|
|
Loading…
Add table
Reference in a new issue