Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Frank Goossens

    (@futtta)

    that’s because the containing DIV is too wide, rendering the entire blog-post unresponsive actually. the reason; on the page where it doesn’t work, your css for has

    .blog_post {
         width:auto;
    }

    but is should be:

    .blog_post {
         width:auto;
         max-width:100%:
    }

    hope this helps,
    frank

    Thread Starter huntsimply

    (@huntsimply)

    Hi Frank, thanks so much for the quick response. that’s very helpful!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problem with responsiveness for certain posts’ is closed to new replies.