After implementing a Wordpress Theme, I encountered the need to customize the styles of one of its elements. (This particular element displays our tours automatically) Currently, the style is as follows:
.tourmaster-tour-grid .tourmaster-tour-content-wrap {
min-height: 250px;
}
To make modifications, I introduced a custom CSS class to the element: hp_tour_el. The updated style code looks like this:
.hp_tour_el .tourmaster-tour-grid .tourmaster-tour-content-wrap {
min-height: 160px;
height: 130px;
}
Despite making these changes, there was no visible difference in the output.