• Resolved blozzle

    (@blozzle)


    Is there CSS I can use to change the font used in the results?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi,

    Sure! If you only want to change the font in the live results container:

    .asl_r * {
        font-family: arial !important;
    }

    All the best,
    Ernest

    Thread Starter blozzle

    (@blozzle)

    Thanks. That almost works, but it only seems to have an effect on the text that the user types; the other text remains normal size. And when I turn off “Keyword highlighting”, then it doesn’t have any effect.

    Plugin Author wpdreams

    (@wpdreams)

    Make sure to add !important modifier on all rules to increase specificity:

    .asl_r * {
        font-family: arial !important;
        font-size: 30px !important;
        font-weight: bold !important;
    }
    Thread Starter blozzle

    (@blozzle)

    Yes, that was it, now it works!

    -Thanks

    Plugin Author wpdreams

    (@wpdreams)

    You are very welcome ?? I will mark this as resolved then.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Changing the font that’s used in the results’ is closed to new replies.