I tried to create buttons and insert my own images instead of the standard button images. However, the gray border from the standard buttons still remains, showing on the outside of my black button images.
Does anyone know how to remove this gray border from the button, so it's just the image itself? Thank you.
You can also try
background:none;border:0px
to buttons.also the css selectors are
div#yes button{..}
anddiv#no button{..}
. hopes it helpsAdd
to your buttons.
Demo:
https://jsfiddle.net/Vestride/dkr9b/
I was having the same problem and even though I was styling my button in CSS it would never pick up the
border:none
but what worked was adding a style directly on the input button like so:Try using:
border:0;
orborder:none;
The usual trick is to make the image itself part of a link instead of a button. Then, you bind the "click" event with a custom handler.
Frameworks like Jquery-UI or Bootstrap does this out of the box. Using one of them may ease a lot the whole application conception by the way.
This seems to work for me perfectly.