• when I create a post in wordpress, the pictures fit the screen I place them in. But when I preview the post, the same pictures are cut off on the right hand side. It’s like the viewable space on the actual website is smaller that the post creator page. What can I do to resolve this? Thanks in advance!

Viewing 5 replies - 1 through 5 (of 5 total)
  • popper

    (@julialasarte)

    url of your blog?

    Thread Starter ritzbitz78

    (@ritzbitz78)

    url is: http://www.mckinneyfamilyblog.com The post I am talking about has not been published yet.

    Until it’s published, there’s not much we can do. I would try switching theme and seeing if that happens again. It could be that the theme you are using is cropping the images.

    Thread Starter ritzbitz78

    (@ritzbitz78)

    Thanks Christine. I published it. Please take a look. You may be right, that the theme may be cropping it. My next question would be how in the world would I find a clean simple theme that wouldn’t crop the images and how would I install it?

    popper

    (@julialasarte)

    It’s an issue with your theme, as Christine said. If you open your style.css, on the line 887 you’ll see this:

    .entry img {
    	padding: 4px;
    	border: 1px solid #E7E7E7;
    	background-color: #FFFFFF;
    }

    On way to fix the issue is changing it to this:

    .entry img {
    	padding: 4px;
    	border: 1px solid #E7E7E7;
    	background-color: #FFFFFF;
    	width: 100%;
    	height: auto;
    }

    EDIT: Ah. Yes. This won’t work since the fix above is for the post page (which also crops your images, I got confused). I’ll edit back with the preview thing. Sorry! 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Preview of Post shows pictures cut off’ is closed to new replies.