• Resolved baudouin88

    (@baudouin88)


    Search : Keyword
    If I delete the keyword, (letter after letter), and the search field is emptied.
    The search result box disappear, but not the border-top of that box.

    So if my search field is smaller (width) than my search result field, a fat border line appear where the result field used to be.

    id=”aws-search-result”….style=…display:block => should display:none if search field keyword is deleted (or strlenght null (like when you click outside the search field)

    I just can’t find where in the code ??

    Help much appreciated

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    I will fix this issue in the next release.

    For now, if you don’t want to wait, you can quickly fix this by yourself by opening
    assets/js/common.js file, find lines

    if ( searchFor === '' ) {
        $(d.resultBlock).html('');
        methods.hideLoader();
        return;
    }

    and replace them with

    if ( searchFor === '' ) {
        $(d.resultBlock).html('').hide();
        methods.hideLoader();
        return;
    }
    • This reply was modified 7 years, 9 months ago by ILLID.
    Thread Starter baudouin88

    (@baudouin88)

    Hi ILLID.

    Well It was right under my nose; sorry.

    Thanks you again!

    bo

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘aws-search-result border-top’ is closed to new replies.