Hi,
I saw that there are two "borders" affected.
1. There is a border in "unchecked" state
Code:
li.imageselect-listitem .imageselect-container .imageselect-label {
z-index: 1;
margin: 3px;
padding: 0;
border: 18px solid hsla(0,0%,60%,0.9);
border-radius: 0;
}
2. And the border in "checked" state
Code:
li.imageselect-listitem .imageselect-container input.imageselect-checkbox:checked+label {
border: 18px solid hsla(198,50%,30%,0.9);
}
To hide any border, add to your custom.css
Code:
li.imageselect-listitem .imageselect-container .imageselect-label {
border: 0;
}
li.imageselect-listitem .imageselect-container input.imageselect-checkbox:checked+label {
border: 0;
}
Or adapt to your needs.
Joffm