This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Remove Title and Overlay

#8568
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

There is an option to hide the overlay, but I believe in your case it’s not the best thing to do, since you want to get rid off the title as well. If you turn off the overlay and the title as well, then the results will be unclickable, so I rather suggest something else.

Use this custom CSS to get rid off the overlay background and the icon, and to hide the title as well:

[html].asp_content {
display: none !important;
}

.asp_item_overlay {
display: block !important;
background: none !important;
}

.asp_item_inner {
display: none !important;
}[/html]