06.06.2023, 08:58
Use value-center Additional class. Add to Custom JS:
Code:
$(function() {
$('.value-center').each(function(_, el) {
var valueel = $('.value', el);
var iconheight = $('.icon', el).height();
var valueheight = valueel.height();
var offset = (iconheight + valueheight) / 2;
valueel.css('margin-top', -offset + 'px').css('padding-top', 0);
});
});