Chrome Problem on NEXUS7

  • Posted in : impressivCard
  • llyrbermo
    Participant

    For some reason my website looks blank when using the default chrome browser on my new Nexus 7 Tablet, i.e. the Navbar menu is visible, but all the ‘page’ content is invisible.

    To make sure that I hadn’t botched something up in the code, I viewed the ‘live preview’ of the template in Themeforest, and the same thing occured.

    Using Firefox/Opera/Dolphin browsers on the Nexus, the site is fine, but I presume most of the millions of Nexus users will be using the chrome default browser installed.

    It’s fine on my old android phone too.

    Any suggestions?

    Thanks

    Llyr

    ahmetsali
    Keymaster

    Hi, i don’t have a Nexus7 tablet, but i tested it via browserstack.com on Nexus7 emulator. And it works fine with 3d layout activated as i see. Can you open the safe-mod from html data attribute and try again. If it works fine we can force it to go into safe mod on android tablets.

    <html data-safeMod="true"
    
    llyrbermo
    Participant

    Hi, yes that’s made the pages viewable on the Nexus 7 – does that affect it on other browsers?
    Thanks

    Llyr

    ahmetsali
    Keymaster

    Hi, yes this effects all devices, so we need to edit script to go into safe mode if any android device is detected. In main.js: line 60, you will see this line of code;

    	safeMod = safeMod || mobileSafeMod || !Modernizr.csstransforms || !Modernizr.csstransforms3d || ios5;
    

    change that line to this, and see if it works.

            var ua = navigator.userAgent.toLowerCase();
            var isAndroid = ua.indexOf("android") > -1;
    	safeMod = safeMod || mobileSafeMod || !Modernizr.csstransforms || !Modernizr.csstransforms3d || ios5 || isAndroid;
    

    Side not; android version was 4.1.1 on Nexus7 i tested.

    llyrbermo
    Participant

    Great, that’s sorted out that problem on the android – my Nexus is running 4.2.1 by the way.

    One other bug I’ve noticed on the androids (Nexus and phone) and the Opera and IE9 browsers, when clicking to filter a portfolio item, it jumps back to the ‘home’ page.

    ahmetsali
    Keymaster

    That’s super weird, clicking on a portfolio filter, jumps back to home page. I just checked our preview site, and it is working normally. Maybe you have something wrong with your portfolio filter markup. If you provide a url, i can check what’s wrong.

    llyrbermo
    Participant

    Hey, thanks for the offer mate. I’ve noticed that another page (a translated version of the same page that’s not working) I’ve got filtering on works fine, so I’ll go and find what I’ve missed/changed – you shouldn’t have to use your work time to find it! Great work by the way. Thanks for yout help.

    Llyr

    ahmetsali
    Keymaster

    Thanks, i am glad you liked our template.

Viewing 8 posts - 1 through 8 (of 8 total)

The forum ‘impressivCard’ is closed to new topics and replies.