Hello,
You want to show TOP DESTINATION post button all the time not show only in hover.
Kindly follow the steps given below
Go to Dashboard >> Appearance >> Customize >> Additional CSS >> Paste the given CSS on it >> Publish.
.top_destination .destination_hover .text-title {
position: absolute;
background: #417bb2;
width: 100%;
padding: 10px;
opacity: 0.9;
display: block;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
bottom: 0;
}
Many Thanks