Hi @t2m,
Thanks for using our plugin.
We really appreciate this feedback. We rely on feedback from our users to continue making improvements to the plugin.
This was certainly a subjective design decision that we made, and I completely understand the desire to keep the ribbon. As of now, I don’t think I’ll be changing back to the ribbon, but if I keep hearing feedback like yours, I will certainly consider it.
You can use the following code to add the ribbon back. Add this to the Additional CSS area of the Customizer. (NOTE: It will remove the rounded corners from the cards, but since the ribbon has squared corners, you’d probably want the cards to be squared off as well.)
/* Add the ribbons back */
.ld_course_grid .thumbnail {
overflow: visible;
}
.thumbnail.course .ld_course_grid_price {
top: 10px;
left: -8px;
border-radius: 0;
}
.thumbnail.course .ld_course_grid_price:before {
display: block;
border: 4px solid transparent;
border-top: 4px solid #348c34;
border-right: 4px solid #348c34;
content: "";
position: absolute;
left: 0;
bottom: -8px;
}
.ld-course-list-items .ld_course_grid {
border-radius: 0;
}
If you would like to make any other small edits to the course grid styles, please let me know. I’d be happy to send you the code to do so.