Reputation: 61
Please review the link: http://www.useboom.com/
The video in home page works fine in other browsers but in chrome the Play and Volume buttons have a white square on top.
The buttons were fine and visible before, we've been deleting unused files and suddenly started to appear this way.
I don't know what is the problem!
Upvotes: 1
Views: 548
Reputation: 11
I had the same problem with Chrome and worked out it is caused by styling "input" without specifying which one exactly i.e.
input {
background-color:white;
}
Using:
#my_div input {
background-color:white;
}
solves the problem. Hope this helps.
Upvotes: 1