• Resolved kinggeneral

    (@kinggeneral)


    I try your theme. In desktop everything works fine.

    But once i step on my mobile testing. There some major issue :

    – The woocommerce button cannot be clicked.
    – contact us (contact 7 generated form cannot be filled and cannot be clicked too).

    And after test in your live version. It still cannot do the same. So thats not only my issue.

    Can you fix this issue ? Help asap.

    • This topic was modified 7 years, 8 months ago by kinggeneral.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author canyonthemes

    (@canyonthemes)

    Hello kinggeneral,

    At first thank you so much for using our theme and also finding issues which we have miss. We will fix all the issues and update our theme soon.

    Thank you,

    Thread Starter kinggeneral

    (@kinggeneral)

    i have search the treat of this issue, this issue started when resolution of width is lower than 1000px

    so when its 999px it will get bugged like this. (happen to form and woocommerce)

    Thread Starter kinggeneral

    (@kinggeneral)

    So after all i fix my own issue :
    by adding “col-xs-12”
    and disable the rightsidebar float

    css to apply in your style.css :

    
    /* Portrait tablet to landscape and desktop */
    @media (min-width: 768px) and (max-width: 979px) {
        .right-sidebar .left-block {
            float: none; 
        }
    }
    

    code to apply , please search in your theme this line, and add col-xs-12

    
      <?php if ($quality_construction_designlayout != 'no-sidebar') { ?>
          <div class="col-md-3 col-xs-12">
               <?php get_sidebar(); ?>
          </div>
      <?php } ?>
    

    i place that in every php that have no sidebar, and its work fine. all button can now be clicked well.

    Theme Author canyonthemes

    (@canyonthemes)

    Hello kinggeneral ,

    Thank you so much, We will add this css and fix all the issues and update the theme soon.

    Thank you,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Mobile : cannot click issue !’ is closed to new replies.