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

Reply To: Search results are not clickable

#10895
Ernest MarcinkoErnest 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:

[html]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;
}[/html]

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:

[html]a.asp_res_url, a.asp_res_url:hover {
display: block;
}[/html]