Gueri
Gueri

Reputation: 61

html5 video issue - buttons appear as white squares in chrome

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

Answers (1)

Greenman
Greenman

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

Related Questions