Hi @donsenilo1968
You can change the white borders of the galleries inside of an album simply by using CSS.
For instance, if you want to remove the borders, you can use the following CSS to do so:
.foogallery-album-gallery-list .foogallery-pile .foogallery-pile-inner,
.foogallery-album-gallery-list .foogallery-pile:before,
.foogallery-album-gallery-list .foogallery-pile:after {
border: none !important;
}
Another instance is if you want to change the border color, replace the border: none !important; in the code above with border-color: #yourprefferedhexcolor !important
Hope this helps.
Kind regards,
Elvis.