Reply To: issues with latest update

#12184
Ernest Marcinko
Ernest Marcinko
Keymaster

Hi!

There is a custom CSS in your site header that overrides all link colors to the same color as the background of the results. This is it:

a:link {
    color: #6d4780 !Important;
}

This is causing the invisible title colors. The simplest solution is to add another rule to override this for the search results with the white color:

div a.asp_res_url {
    color: #FFF !important;
}

This will make sure that the result link colors are forced to white. A more elegant solution would be to change the original rule to not affect certain elements, but this will work just fine as well 🙂

Best,
Ernest Marcinko

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