How can I move with CSS the position of the favorites icon

How can I move with CSS the position of the favorites icon to appear in the right top corner of the listing, on the photo basically?..

Currently it is part of the footer block, but would need to have it in the upper side.

Thanks!

Hi,

Please try these CSS snippets:

.hp-grid__item  {
	position: relative;
}

.hp-listing__action.hp-listing__action--favorite {
	position: absolute;
	top: 5px;
	right: 25px;
}

Please note that it can require further customization.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.