Quick View Position

Howdy css hackers, who can tell me what css to add to make quick view default button to be displayed not in default bottom position but something like absolute bottom -50px (somewhere above title) visible on hover.

Thank you

Try something like

.grid-list .ty-column3 {
    position: relative;
}
.grid-list .ty-quick-view-button a {
    position: absolute;
    bottom: 50px;
    left: 100px;
}

Thanks for responds, did not work until added

.ty-grid-list__item {
position: relative;
}

is it OK ?

Thanks for responds, did not work until added

.ty-grid-list__item {
position: relative;
}

is it OK ?

Ah, yes. Looks like you do not use 3 columns like on the demo