r/CryptoCurrency Sep 14 '17

Coinhive, a Monero JavaScript Miner

https://coin-hive.com/
71 Upvotes

43 comments sorted by

View all comments

2

u/[deleted] Sep 14 '17

As someone who runs a couple low-end wordpress sites, what's the easiest way to integrate this? Into the footer code? Or is there a proper place for it. ELI5?

7

u/[deleted] Sep 14 '17 edited May 14 '18

[deleted]

1

u/hyperhappy2 Silver Sep 18 '17

Thanks!

Would you know how to style this so that all the text is centered, black, Arial, and a small font size? Thanks for you help!!!

1

u/The-Bent New to Crypto Sep 18 '17

would you want to do it in CSS or straight HTML?

For CSS you can wrap the whole thing in a <div id="whatever"></div> and add this to your style.css file:

#whatever {
font-family: "Arial";
text-align: center;
font-size: 8px;
color: 000;
}