New Landing How can we help? Themeforest Theme Support Neighborhood Single column products page on mobile

Viewing 13 posts - 1 through 13 (of 13 total)
  • #78024
    gregcatmull
    Member
    Post count: 109

    Hi guys,

    Currently when I view a product listing page (e.g. http://shop.garsons.co.uk/product-category/garden-furniture/dining-suites-garden-furniture/) from my website on a mobile the products are listed in two column. Is there some CSS I could use to make this single column? I would prefer this as it would make the images large and easier to view for a customer.

    Many thanks

    Greg

    #78187
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Hi

    Please try adding this custom css

    @media only screen and (max-width: 479px) {
    body .woocommerce-shop-page ul.products li.product, body .product_list_widget > div > ul.products li.product {
      width: 100%!important;
    }
    }

    – Kyle

    #78206
    gregcatmull
    Member
    Post count: 109

    perfect that works, is there also a way in which I can hide the ‘showing all xx products’ on mobile?

    cheers
    Greg

    #78222
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Of course, add this:

    .woocommerce-count-wrap {
      display: none;
    }

    Make sure you add it inside the media query that I gave you above, so that it only applies for mobiles

    – Kyle

    #78235
    gregcatmull
    Member
    Post count: 109

    could you write the full code for me for both of the above.

    cheers
    Greg

    #78238
    gregcatmull
    Member
    Post count: 109

    its ok done it now cheers! works fine!

    #78240
    gregcatmull
    Member
    Post count: 109

    could you give me some code which will hidee my header background on mobiles
    cheers
    Greg

    #78241
    gregcatmull
    Member
    Post count: 109

    hide*

    #78255
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Hi

    I’m afraid you will need to open new threads for new customisations as the question does not relate to the original question or title

    – Kyle

    #78267
    gregcatmull
    Member
    Post count: 109

    no worries will do!

    cheers
    greg

    #78270
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Thanks 🙂

    – Kyle

    #117375
    sareecolella
    Member
    Post count: 1

    <p>Hi thanks for the code it worked also for me..</p>
    <p>but I am having problem regarding the sizes of the single product page showing very weird.
    BTW just to let you know I’ve added some csS to display images a little bigger and writing smaller.</p>
    <p>[css attached below]</p>
    <p>how can I make it work just for desktop and not for mobile?</p>
    <p>i mean I am happy to leave mobile view as it was.. how can i do that? thanks </p>
    my website http://www.desuclothing.com

    .product_meta .sku_wrapper {
    display: none;
    }
    /* IMAGE AREA */
    .woocommerce div.product div.images {
    width: 50%;
    }
    /* DETAILS AREA */
    .woocommerce div.product div.summary {
    width: 30%;
    }
    
    Attachments:
    You must be logged in to view attached files.
    #117384
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Wrap it in a media query, for e.g:

    @media only screen and (min-width: 7699px) { 
    .product_meta .sku_wrapper {
    display: none;
    }
    /* IMAGE AREA */
    .woocommerce div.product div.images {
    width: 50%;
    }
    /* DETAILS AREA */
    .woocommerce div.product div.summary {
    width: 30%;
    }
    }

    – Kyle

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

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register