Home Forums Pro Themes Easy Commerce Pro Columns look awful on mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #56858
    Maria Hilton
    Participant

    Hi, two questions:

    1) since adjusting the columns from 3-4 my website looks awful on mobile which seems to be where most of my visitors come from. Can you help?

    2) how can I revert the columns back to 3 again if required?

    #56951
    wensolutions
    Keymaster

    Hello @hipnippers,

    To manage the site in responsive view replace the CSS :

    @media only screen and (max-width: 767px)
    {
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        width: 48.2%;
        clear: both;
    }
    }
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        margin: 0 1.8% 15px 0;
        width: 23%;
    }

    With the CSS given below:

    @media only screen and (min-width: 767px){
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        margin: 0 1.8% 15px 0;
        width: 23%;
    	clear: none;
    }
    }

    Or if you want to revert the columns back to 3 then you can simply remove the codes from the child theme functions.php and remove the additional CSS we have provided .

    Hope this helps .

    Best Regards!!

    #56969
    Maria Hilton
    Participant

    Thanks, I’ve reversed the changes.

    #56971
    wensolutions
    Keymaster

    Hello @hipnippers,

    Glad to help you .

    If you have any issues further then please let us know .

    Best Regards!!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.