Aligment of only 1 image is not correct

I have some troubles with the aligment of one image, see here:

http://www.rowecobouw.nl/veel-verkochte-woningen/?preview=true

Read More

The problem can be seen in the 7th row.

Does anyone know what is going wrong?

Regards,
Jordy

Related posts

3 comments

  1. remove float left from .wp-caption and add display:inline-block

     .wp-caption {
       padding: 5px;
       border: 1px solid #eee;
       background: #fcfcfc;
       /* float: left; */
       display: inline-block;
      }
    
  2. remove float:left from .wp-caption and add display:inline-block;

    .wp-caption { /* float: left;*/ display: inline-block; }
    
  3. The line-height on .block-type-content div.entry-content, .block-type-content div.entry-content p is throwing your attachment ID's out.

    Reset your line-height and all is well.

    Current CSS declaration:

    .block-type-content div.entry-content, .block-type-content div.entry-content p {
        color: #555555;
        font-size: 14px;
        line-height: 180%;
    }
    

    Change to:

    .block-type-content div.entry-content, .block-type-content div.entry-content p {
        color: #555555;
        font-size: 14px;
    }
    

    and you’re good to go.

Comments are closed.