• Resolved urielc

    (@urielc)


    Hey.

    First of all I’ll say that I love the Ajax Search Lite plugin very much.
    It’s really an asset to my site.

    For some reason, Ajax Search Lite adding to my site a horizontal scrollbar , at the bottom.

    You can see it immediately when you go to my site:

    https://it-support.jct.ac.il

    When I disable this plugin, the horizontal scrollbar go away.

    Can you help me to make it disappear for good?

    Thanks you!

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

    (@wpdreams)

    Hi!

    Thank you for your kind words, I appreciate it! It appears that the search settings box is not properly hidden for some reason.

    Try this custom CSS to fix the problem:

    .searchsettings {
        display: none !important;
    }

    I hope it helps!

    Thread Starter urielc

    (@urielc)

    Yes!
    It did the trick!

    Very fast support!

    Thank you very much ??

    Thread Starter urielc

    (@urielc)

    Hey

    I have another question.
    Can I enlarge the font size or switch to another font entirely in the plugin?

    Thanks.

    Plugin Author wpdreams

    (@wpdreams)

    Hi!

    Yes, with custom CSS it’s possible. The fastest way probably is this rule, if you want to change the size of every font within the search:

    .wpdreams_asl_container *, .wpdreams_asl_results * {
        font-size: 16px !important;
    }
    Thread Starter urielc

    (@urielc)

    Its works like a charm! thanks!

    If I want also to change the font type itself, can I do it?

    Thread Starter urielc

    (@urielc)

    And, one more question, is it possible to make the search RTL ?
    My site is in Hebrew, but the search appear LTR.

    I’m sorry to bother you with so much questions ??

    Plugin Author wpdreams

    (@wpdreams)

    Indeed, it’s the wrong direction.

    Try changing the custom CSS to:

    .wpdreams_asl_container *, .wpdreams_asl_results * {
        font-size: 16px !important;
        font-family: Arimo;
        direction: rtl;
        text-align: right !important;
    }
    Thread Starter urielc

    (@urielc)

    It works great!
    I can’t thank you enough!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Ajax Search Lite – horizontal scrollbar problem’ is closed to new replies.