• Just f.y.i. I had a customer today who was experiencing an issue where the pop up results would come up fine but when they hovered over each result the font would change from the site’s default font of sans_serif to times new roman.

    After adding some custom css to over-ride the :hover styling of the font-family of the plugin it was behaving again displaying the same font style for both states.

    I’m not sure which version of browser they are using unfortunately but from past experience they usually use a non-recent version of firefox.

    Hope this helps

    https://wordpress.org/plugins/ajax-search-lite/

Viewing 1 replies (of 1 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi!

    The search CSS does not define any font-styles, everything is inherited. So it’s coming from antoher CSS declaration for sure. But, he can get rid of that easily by forcing the font-family on the search items. Add this css code to any of the stylesheets or the site header:

    .resdrg a:hover {
        font-family: sans-serif !important;
    }

    This should force the hover font to the title.

Viewing 1 replies (of 1 total)

The topic ‘Weird CSS issue with results pop up’ is closed to new replies.