Pages:
Author

Topic: Chainroll | The Easiest Dice Game in Bitcoin - 1% House Edge (Read 16494 times)

sr. member
Activity: 336
Merit: 250
Someone help me find these guys, I want to know where they went to contact them

This site is dead since some time ago, so I think there is no way to contact them except from this forum by pm. But I doubt you'll get any replies because he is not active anymore.

Thanks for stating the obvious.
legendary
Activity: 3500
Merit: 1354
Someone help me find these guys, I want to know where they went to contact them

This site is dead since some time ago, so I think there is no way to contact them except from this forum by pm. But I doubt you'll get any replies because he is not active anymore.
sr. member
Activity: 336
Merit: 250
Someone help me find these guys, I want to know where they went to contact them
legendary
Activity: 1456
Merit: 1081
I may write code in exchange for bitcoins.
The red color of the interface of the site is making eye tired, maybe change another color is much better.
Indeed the color it's to fiery for my eyes. I would like to see a friendly color for my eyes

You can change the color as you want, just  try bitbaby's suggestion (I think this is the simple way to change the color of any sites)


Or try my suggestion just above it, you can learn your first javascript this way even if you've never coded before.  It's really easy in a modern browser with the javascript consoles.

True, but I think it is better if admin can add a "theme" drop down menu with a few different color schemes so that users can change it easily with 1 click.

True, and it wouldn't be hard to do.  (Admin of chainroll, pm me if you need a little javascript button to change up the theme color for your users).
legendary
Activity: 896
Merit: 1000
The red color of the interface of the site is making eye tired, maybe change another color is much better.
Indeed the color it's to fiery for my eyes. I would like to see a friendly color for my eyes

You can change the color as you want, just  try bitbaby's suggestion (I think this is the simple way to change the color of any sites)


Or try my suggestion just above it, you can learn your first javascript this way even if you've never coded before.  It's really easy in a modern browser with the javascript consoles.

True, but I think it is better if admin can add a "theme" drop down menu with a few different color schemes so that users can change it easily with 1 click.
legendary
Activity: 1456
Merit: 1081
I may write code in exchange for bitcoins.
The red color of the interface of the site is making eye tired, maybe change another color is much better.
Indeed the color it's to fiery for my eyes. I would like to see a friendly color for my eyes

You can change the color as you want, just  try bitbaby's suggestion (I think this is the simple way to change the color of any sites)


Or try my suggestion just above it, you can learn your first javascript this way even if you've never coded before.  It's really easy in a modern browser with the javascript consoles.
legendary
Activity: 3500
Merit: 1354
The red color of the interface of the site is making eye tired, maybe change another color is much better.
Indeed the color it's to fiery for my eyes. I would like to see a friendly color for my eyes

You can change the color as you want, just  try bitbaby's suggestion (I think this is the simple way to change the color of any sites)

full member
Activity: 206
Merit: 100
The red color of the interface of the site is making eye tired, maybe change another color is much better.
Indeed the color it's to fiery for my eyes. I would like to see a friendly color for my eyes
legendary
Activity: 1456
Merit: 1081
I may write code in exchange for bitcoins.
i tried out the site for first time today. like the design, easy to navigate

Yah, other people were complaining about the colors (and I showed that fix above), but personally, I thought the site looks pretty good!
legendary
Activity: 3500
Merit: 1354
Any news about the promo code that you have said a week ago?
You were online today, but you did not say something in this thread, hope you will be more communicative with others Smiley

hero member
Activity: 868
Merit: 1000
i tried out the site for first time today. like the design, easy to navigate
legendary
Activity: 3500
Merit: 1354
We're sending new promo codes tomorrow. Stay tuned!

Have you sent this promo code? I dont get it yet. Do I need to fill out this form https://chainroll.wufoo.com/forms/z1ggn9uo1jvp8ht/ with my email to get the bonus code?
Last time I try the form (a month ago), it was not working/no longer accepting submissions. But just tried to fill the form and it works. Lets see I will get the bonus code or not?


P.S : Anyone got the bonus code already?
legendary
Activity: 1456
Merit: 1081
I may write code in exchange for bitcoins.
We're sending new promo codes tomorrow. Stay tuned!

hope this will be something new, innovative, and different from the previous bonus codes.
anyway waiting for it..

The red color of the interface of the site is making eye tired, maybe change another color is much better.

Isn't there a button on chainroll to change the color?  Perhaps I'm remembering wrong but I thought they had night/day modes.  Even if they don't, you can always just change the color of the background with javascript in your browser:

document.getElementById("idofthedifyouwannachangethebackgroundof").style.background.color="white";

I dont think that they have night/day mode feature, and thanks for the idea/suggestion how the way to change the background's color but unfortunately not all members understand about javascript including me Smiley
it will great if you explain it step by step to help others to implement it.


Sure thing.  BTW, bibaby's suggestion about a FF extension might be easier.  But I took a look at the chainroll site and it's quite simple to change the background in just a few clicks.  In FF, I just right-click on the background of the page, and then select "inspect element".  The inspection window opens up and the background div is highlighted.  On chainroll, it's a
with a class "container".  Anyway, at that point, you can click into the right panel where it is showing CSS rules and you can click into the section called "element" and then type in "background:green" or whatever color you want.  That worked for me when I just tried it.

In that same "inspection" panel, you can click into "console" and type (or cut-n-paste) in some javascript to do the same thing for all the elements of class "container".  Two lines:

Code:
var ctns = document.getElementsByClassName("container");
for (var i=0;i

The first line gets all the elements of class "container" and the second line loops through them and turns their backgrounds green.  That also turned the background green for me.  Change "green" to whatever you want.

I note, however, that the list of "container" elements was only a single one, so it's a little strange that "container" is a class and not an id.  But whatever.  Anyway, you could also use an add on like greasemonkey to save this javascript to always run on chainroll.

Hope it helps!  Have fun!
hero member
Activity: 812
Merit: 1000
You can use "Color That Site!" Extension if you're on Firefox (might be a version of it for Chrome too), doesn't require any knowledge and you can use it to change colors of any website.


legendary
Activity: 3500
Merit: 1354
We're sending new promo codes tomorrow. Stay tuned!

hope this will be something new, innovative, and different from the previous bonus codes.
anyway waiting for it..

The red color of the interface of the site is making eye tired, maybe change another color is much better.

Isn't there a button on chainroll to change the color?  Perhaps I'm remembering wrong but I thought they had night/day modes.  Even if they don't, you can always just change the color of the background with javascript in your browser:

document.getElementById("idofthedifyouwannachangethebackgroundof").style.background.color="white";

I dont think that they have night/day mode feature, and thanks for the idea/suggestion how the way to change the background's color but unfortunately not all members understand about javascript including me Smiley
it will great if you explain it step by step to help others to implement it.


legendary
Activity: 1456
Merit: 1081
I may write code in exchange for bitcoins.
The red color of the interface of the site is making eye tired, maybe change another color is much better.

Isn't there a button on chainroll to change the color?  Perhaps I'm remembering wrong but I thought they had night/day modes.  Even if they don't, you can always just change the color of the background with javascript in your browser:

document.getElementById("idofthedifyouwannachangethebackgroundof").style.background.color="white";
member
Activity: 105
Merit: 10
We're sending new promo codes tomorrow. Stay tuned!
hero member
Activity: 532
Merit: 500
The red color of the interface of the site is making eye tired, maybe change another color is much better.
legendary
Activity: 3500
Merit: 1354
I tried this site today with an email I got from it but one of the codes were I think already expired. Really nice clean interface, however I couldn't figure out how to make the bets go over than under but the auto bets are really fast.

There is only one option to bet, that is bet under xxx number so there is no way to make the bets go over xxx number..
hero member
Activity: 672
Merit: 502
I tried this site today with an email I got from it but one of the codes were I think already expired. Really nice clean interface, however I couldn't figure out how to make the bets go over than under but the auto bets are really fast.
Pages:
Jump to: