This topic contains a post which is marked as Best Answer. Press here if you would like to see it.
*

rsn

  • ***
  • 61 posts
the search is not correctly displayed
« on: May 28, 2018, 09:06:32 AM »
the search is not displayed correctly. look at screen

*

MB Themes

Re: the search is not correctly displayed
« Reply #1 on: May 28, 2018, 09:39:07 AM »
@rsn
What browser have you used?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

rsn

  • ***
  • 61 posts
Re: the search is not correctly displayed
« Reply #2 on: May 28, 2018, 10:09:43 AM »
chrome, safari -badly
firefox -ok

*

MB Themes

Re: the search is not correctly displayed
« Reply #3 on: May 28, 2018, 10:59:02 AM »
@rsn
I've just checked and it works ok for me on chrome. What is your url?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

rsn

  • ***
  • 61 posts
Re: the search is not correctly displayed
« Reply #4 on: May 28, 2018, 11:18:33 AM »
on your test site, too, is displayed incorrectly

Marked as best answer by rsn on May 28, 2018, 02:19:43 PM
*

MB Themes

Re: the search is not correctly displayed
« Reply #5 on: May 28, 2018, 11:58:44 AM »
@rsn
I see now.
Go to oc-content/themes/starter/js/global.js

Find code:
Code: [Select]
  // SHOW ADVANCED FILTERS
  $('body').on('click', '.show-advanced', function(e){
    e.preventDefault();
    $('.filters-advanced').slideDown(200);
    $(this).fadeOut(200);
  });

Replace with:
Code: [Select]
  // SHOW ADVANCED FILTERS
  $('body').on('click', '.show-advanced', function(e){
    e.preventDefault();
    $('.filters-advanced').slideDown(200, function() {
      $('.filters-advanced').css('overflow', 'visible');
    });
    $(this).fadeOut(200);
  });
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots