Home Forums WoodMart support forum BUG with "Reviews" on iPads on product pages.

BUG with "Reviews" on iPads on product pages.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #61783

    newK9
    Participant

    Hi. I’ve just come across my first bug of the site. Weirdly it only happens on ipads in Safari, Chrome, and Firefox. Once you click on the review accordion on a product page it hides behind related products. The other drop downs are unaffected.

    Tested on android tablets and multiple browsers and android is unaffected.

    Doesn’t appear anyone else has come across the bug but important for the large tablet audience.

    Thank you.

    Attachments:
    You must be logged in to view attached files.
    #61830

    Hello,

    Please add this custom CSS to Theme Settings > Custom CSS > Global CSS

    @media (max-width: 1024px) {
    	.woocommerce-Reviews {
    		-ms-flex-wrap: wrap;
    		    flex-wrap: wrap;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
    	}
    
    	.woocommerce-Reviews #comments, 
    	.woocommerce-Reviews #review_form_wrapper {
    		width:100%;
    	}
    }

    Best Regards

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