> For the complete documentation index, see [llms.txt](https://madeindonesia.gitbook.io/mi-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://madeindonesia.gitbook.io/mi-guide/divi/divi-custom-container-width.md).

# Divi custom container width

<figure><img src="https://115803331-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F705N8OeBYBxKGzhvaDVF%2Fuploads%2FsH1nfy6AA6IoTUYlgloS%2Fimage.png?alt=media&amp;token=a6703f5e-10ef-4eb0-949e-700d7c827650" alt=""><figcaption></figcaption></figure>

If you see the picture above, that full width container. Actually divi has full width container, but the problem in our sop we have set the default container size and that makes the divi default didn't work. so the solution for now we can add manual custom CSS into Divi -> Theme option -> General -> Custom CSS. you can see the code below

<pre class="language-css"><code class="lang-css"><strong>//This breakpoint to make the layout only in desktop, because sometimes this layout 
</strong><strong>cannot implement on mobile and below. 
</strong><strong>@media(min-width: 981px){
</strong>
	//This is row styling (wrapper)
	.your-row-class.et_pb_row {
		max-width: unset!important;
		width: 100%;

		display: flex;
		flex-direction: row;
	}

	//This for the full width (example: the lady picture above) 
	.your-row-class.et_pb_row .et_pb_column:first-child {
		//you can adjust width depends on the design
		width: 44.5%;
		margin: 0!important;
	}
	
	//This for the normal part (example: description on picture above)
	.your-row-class.et_pb_row .et_pb_column:last-child {
		//this is to make the part still on normal container
		//1135px is our standard container size
		max-width: calc(1135px / 2);
		
		//you can adjust width depends on the design
		width: 40%;
		
		margin-left: 5.5%;
	}
}
</code></pre>

and after add that css style, you must set row class. see the picture below:

<figure><img src="https://115803331-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F705N8OeBYBxKGzhvaDVF%2Fuploads%2FtVDdYxOW9gGNAy3xks9y%2Fimage.png?alt=media&amp;token=e8f87d1a-6726-44d4-be45-70c889e46935" alt=""><figcaption></figcaption></figure>
