Two Mobile bugs (I think) found

Discussion in 'BusinessGrow One Page WordPress Theme' started by c_musseau, Jul 29, 2014.

  1. c_musseau

    c_musseau Guest

    Joined:
    May 21, 2014
    Messages:
    38
    Likes Received:
    0
    1. On mobile, when I tap one of the services (round images) it doesn't open the page. I always need to tap two times.

    2. On mobile, the main menu stays open when I make a selection. It should close, as it does on a page.

    http://simplyask.me

    Thanks!
    Craig
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Craig,

    We are looking to this issue and will reply you soon.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. c_musseau

    c_musseau Guest

    Joined:
    May 21, 2014
    Messages:
    38
    Likes Received:
    0
    Hello,
    Has a solution been found for the two mobile issues?
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    1) Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media (max-width: 767px) {
       .ch-item {
       box-shadow:
           inset 0 0 0 110px rgba(200,95,66, 0.4),
           inset 0 0 0 16px rgba(255,255,255,0.8),
           0 1px 2px rgba(0,0,0,0.1);
    }
    .ch-info {
       opacity: 1;
       -webkit-transform: scale(1);
       -moz-transform: scale(1);
       -o-transform: scale(1);
       -ms-transform: scale(1);
       transform: scale(1);
    }
    }
    2) For mobile menu
    Go to the businessgrowtheme\js\mobile-menu.js
    and add this code at very bottom.

    jQuery('.scrollSmint').on('click', function(){
    jQuery('.mobile_nav').addClass('closed').removeClass('opened');
    jQuery('.it_mobile_menu').css('display','none');
    });

    Or download theme from your members area and upload it.

    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page