Viewing 2 replies - 1 through 2 (of 2 total)
  • Caleb Burks

    (@icaleb)

    Automattic Happiness Engineer

    It looks like your theme has been customized in a non-responsive way. You have some content areas set to have a width of 120% on mobile.

    Try this css:

    @media (max-width: 800px) {
    	#main #content {
    		width: 100% !important;
    	}
    	.woocommerce ul.products li.product:nth-child(2n), .woocommerce-page ul.products li.product:nth-child(2n) {
    		float: none !important;
    	}
    }
    Thread Starter moonunderground

    (@moonunderground)

    Thanks Caleb,

    Yes, my theme is a mess but that is a whole other set of problems!

    Anyway, your fix has worked great, thanks very much ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘shop and category content off screen on mobile’ is closed to new replies.