• Howdy folks. I was just starting to work with Page Builder, and discovered an issue. Inserted an image into a paragraph with the wordpress insert media tool. Resizing the page does not keep the image within the widget boundary. Images alone do just fine.

    I wonder if there is something I am doing wrong? Or if it simply is not possible to have an image along with a paragraph in a container?

    https://travisinvestigations.com/blog/test/

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.