Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
d4tis authored Feb 11, 2024
1 parent 5323817 commit aa43ebe
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
background-color: #000; /* Black footer background */
padding: 10px;
font-size: 12px; /* Small font size */
position: fixed;
position: relative; /* Changed from fixed to relative */
bottom: 0;
width: 100%;
}
Expand All @@ -75,9 +75,10 @@
background-image: url('bitcoin-btc-logo.png'); /* Replace 'bitcoin-btc-logo.png' with the actual path to your PNG file */
background-size: cover;
background-repeat: no-repeat;
position: fixed;
bottom: 20px;
right: 20px;
position: absolute; /* Changed from fixed to absolute */
bottom: -30px; /* Adjust the position */
left: 50%; /* Center the button horizontally */
transform: translateX(-50%); /* Center the button horizontally */
z-index: 999; /* Ensure the button stays above other content */
}
</style>
Expand All @@ -99,7 +100,4 @@ <h2>@d4tis</h2>
</div>
<div class="footer">
<p>Inflation=Theft</p>
</div>
<a href="https://learnmeabitcoin.com" class="ping-button"></a>
</body>
</html>

0 comments on commit aa43ebe

Please sign in to comment.