Mobile issue with WooCommerce

Discussion in 'Compass WordPress Theme' started by dcjunior, Sep 14, 2015.

Thread Status:
Not open for further replies.
  1. dcjunior

    dcjunior New Member

    Joined:
    Jun 1, 2012
    Messages:
    29
    Likes Received:
    0
    Having an issue with products on Mobile. They don't display properly and cut off on the left hand side. I tried some CSS but no luck. Any help is appreciated.
    I included screenshot. Thank you. http://inhalebbq.com/shop/
    [​IMG]
     
  2. nitin

    nitin Guest

    Hi,

    Greetings from InkThemes,

    It would be our pleasure to serve you.

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    @media only screen and (min-width: 601px) and (max-width: 767px){
    .woocommerce ul.products li.product a img {    
        margin: 0 !important;
    }
    }
    @media only screen and (min-width: 481px) and (max-width: 600px){
    .woocommerce .products ul, .woocommerce ul.products {
          margin-left: 160px !important;
    }
    .woocommerce .woocommerce-ordering select {
           margin-right: 50px !important;
    }
    }
    @media only screen and (max-width: 480px){
    .woocommerce ul.products li.product a img {  
        margin-left: 77px !important;
    }
    }
    
    Hope it will resolve your issue :)

    Thanks & Regards!
    Nitin
    InkThemes.com
     
  3. dcjunior

    dcjunior New Member

    Joined:
    Jun 1, 2012
    Messages:
    29
    Likes Received:
    0
    Thank you. That worked. :D
     
Thread Status:
Not open for further replies.

Share This Page