Make image full width, overflowing container
/***FULL WIDTH IMAGE***/
/*How to make full widht image support with WordPress add_theme_support( 'align-wide' ); function*/
.wide_image {
position: relative;
left: -50vw;
width: 100vw;
margin-bottom: 20px;
margin-left: 50%;
overflow: hidden;
}
.wide_image img {
width: 100%;
height: auto;
}