Reply To: Responsive

Home Forums Support Responsive Reply To: Responsive

Home Forums Support Responsive Reply To: Responsive

#246903
Tom
Lead Developer
Lead Developer

Hi Kathy,

1. You can make WC products show up in 2 columns on mobile like this: https://generatepress.com/forums/topic/product-images-on-frontpage-not-responsive-like-before/#post-198782

2. There’s not enough room on mobile to display the image to the left of the product information like on desktop. The image would either need to be tiny, or the text would be in a very narrow column and very difficult to read.

3. The mobile menu doesn’t look like it’s working because of a javascript error on your page. It looks like it might have something to do with the Google maps API? If you didn’t add Google Maps, you might want to look at your plugins by trying #1 on this page: https://generatepress.com/knowledgebase/debugging/

4. You can hide your sidebars on mobile like this:

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
}

Hope this helps 🙂