Hi again,
The best solution to your problem, is overwrite template, css and js of the plugin, and make a custom HTML structure.
I can’t do this for you, because it would require a lot of work and time.
Anyway, you can use this css to approximate what you want to obtain
.wishlist_table{
border: none !important;
}
.wishlist_table thead{
display: none;
}
.wishlist_table tbody{
margin: 0 -15px;
}
.wishlist_table tr{
border: none!important;
display: block;
float: left;
width: 25%;
padding: 0 15px;
position: relative;
}
.wishlist_table tr:nth-child(4n + 1){
clear: both;
}
.wishlist_table tr td{
border: none!important;
display: block;
text-align: center!important;
padding: 5px 0!important;
}
.wishlist_table tr td.product-remove{
position: absolute;
top: 0;
right: 15px;
}
.wishlist_table tr td.product-thumbnail a{
max-width: 100%!important;
}
Simply add these rules at the end of the “style.css” file of your theme, but please consider it as a rough workaround.
Here you can see my result with default Twenty theme
Let me know if this helps
Have a nice day ??