Viewing 1 replies (of 1 total)
  • Hello there,

    I am inspecting your site. It appears you’re running Twenty Thirteen theme, which by design purpose, it has negative margin left margin to the left-aligned image and caption. If you are interested on code, you can see exist in its main stylesheet (style.css).

    
    .entry-content img.alignleft,
    .entry-content .wp-caption.alignleft {
        margin-left: -60px;
    }
    

    To prevent it, you need to apply custom CSS override it. Add the below CSS code into additional CSS option (Appearance > Customize > Additional CSS).

    
    .entry-content img.alignleft,
    .entry-content .wp-caption.alignleft {
        margin-left: 0;
    }
    

    You might need to do something the same with right-aligned ones. If so, you would add this:

    
    .entry-content img.alignright,
    .entry-content .wp-caption.alignright {
    	margin-right: 0;
    }
    

    Regards,
    Kharis

Viewing 1 replies (of 1 total)

The topic ‘Embedded image constraint issue’ is closed to new replies.