• Resolved kmbarrack

    (@kmbarrack)


    Hello,

    When I view the theme in mobile environment and look at a post it appears that the post gets squished to the left and there is a lot of deadspace on the right. This making reading the blog difficult. Is there a way to fix this?

Viewing 13 replies - 1 through 13 (of 13 total)
  • WEN Solutions

    (@wen-solutions)

    Hello @kmbarrack,
    Hope you are doing well.
    Can you share your site url and post the screenshot of your problem so that it becomes easier to debug your problem.

    Thread Starter kmbarrack

    (@kmbarrack)

    WEN Solutions

    (@wen-solutions)

    @kmbarrack- It seems you want to put the content in the center , right?
    Well, you can achieve this by changing code. Go to your Admin Panel’s Appearance -> Theme Options -> Tools -> Custom CSS
    Then inside Custom CSS code put the following code:

    @media only screen and (max-device-width: 480px) {
    		div#page {
    			margin: 0 auto;
    		}

    Let us know how it goes.
    Regards!!

    Thread Starter kmbarrack

    (@kmbarrack)

    thanks for the quick reply, this did not really solve my issue however i found the checkbox in there to disable responsive i’m going to use that.

    WEN Solutions

    (@wen-solutions)

    @kmbarrack,
    Please don’t disable responsive, if you do so users won’t be able to visit your website on a mobile device.
    Try this code instead:

    @media only screen and (max-device-width: 480px) {
    article .entry-content p{
    margin: 0 auto 16px;
    }
    }

    Let us know if you have any queries.
    Regards!!

    Thread Starter kmbarrack

    (@kmbarrack)

    still did not solve my issue. please take a look at this screen shot from my iphone the content is on the left column and just background image is on the right. How can we get this to be on the full screen for mobile?

    https://fromfat2that.com/wp-content/uploads/2016/03/image1.png

    andreaguerra80

    (@andreaguerra80)

    Hi,
    your site can be clearly seen on any mobile device, I just tried it.
    updates and blocks repeatedly loading the page and then refresh again and see that the site is also seen well on mobile.

    it happens to me on my website and often suddenly see as in your photo, but then I upgrade several times.

    WEN Solutions

    (@wen-solutions)

    @kmbarrack – Remove the code previously provided from Custom CSS section and Copy the following code:

    .comment-form-url input{
    	clear:both;
    	width:auto;
    }

    Hope this will resolve your problem.
    Best Regards!!

    Thread Starter kmbarrack

    (@kmbarrack)

    Thank you so much this fixed it. I really appreciate all of your help ??

    WEN Solutions

    (@wen-solutions)

    It’s Glad to help you!

    andreaguerra80

    (@andreaguerra80)

    Now he’s doing it to me and I do not understand why

    andreaguerra80

    (@andreaguerra80)

    @wen-solutions can help you politely that you are a magician on this?

    andreaguerra80

    (@andreaguerra80)

    resolved

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘posts displayed in mobile’ is closed to new replies.