Reply To: Search results are not clickable

#10895
Ernest Marcinko
Ernest Marcinko
Keymaster

Hi,

You have a custom CSS rule which hides all “a” link elements on the page, so the search result titles are not visible. It’s the following rule:

a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .x-topbar .p-info a:hover, .x-breadcrumb-wrap a:hover, .widget ul li a:hover, .widget ol li a:hover, .widget.widget_text ul li a, .widget.widget_text ol li a, .widget_nav_menu .current-menu-item > a, .x-widgetbar .widget ul li a:hover, .x-accordion-heading .x-accordion-toggle:hover, .x-comment-author a:hover, .x-comment-time:hover, .x-recent-posts a:hover .h-recent-posts {
    color: rgb(102,152,255);
    display: none;
}

This basically hides all links, headers and other things as well.

To fix it you can either change that rule, or use this custom CSS as well:

a.asp_res_url, a.asp_res_url:hover {
    display: block;
}
Best,
Ernest Marcinko

If you like my products, don't forget to rate them on codecanyon :)