Post page not fully viewable on mobile

Hi,

I have a size problem when in mobile version of my web using travelify 2.2.0. The main page is working fine, but when I click on a post, the “div” of the post doesn’t fit and I can’t read the text. See the attached picture. This happens at least on Iphone 4 and Samsung Galaxy S2. Is there an easy solution to this topic? Thanks a lot!

Add this code to Appearance >> Theme Options >> Other >> Custom CSS. It should fix problems with your website layout on mobile

@media only screen and (max-width: 767px) {
	.left-sidebar-template #primary,
	.left-sidebar-template #content-woocommerce {
		float: none;
	}
}

Let me know if this helps.

That made the job! Thank’s a lot!