I am trying to: create a divi fullwidth archive content template
Link to a page where the issue can be seen: hidden link
I expected to see: a divi fullwidth page/no sidebar with archive content template like here: hidden link
Instead, I got: a divi page with no sidebar, but reduced width and archive content template. Please see screenshots
Divi actually does not provide a Theme Option for full-width archives, so it's not possible to select that option for a WordPress Archive. You might have some luck adding the following custom CSS code in the WordPress Archive's CSS panel, which overrides the width of the main content area on this archive:
/*** Expand the content area to fullwidth ***/
@media (min-width: 981px){
.archive #left-area {
width: 100%;
padding: 23px 0px 0px !important;
float: none !important;
}
}
Hi Christian, thanks for your feedback.
Please see both attached screenshots. the sidebar is hidden, but the complete page layout /width seems to be different. The bigger one is correct.
I see what you mean, unfortunately the override I found does not effectively address every difference between these two templates. I was following the suggestion from the Elegant Themes site here: hidden link
The Divi support team may be able to provide you with a more appropriate override that will match the width of the Page template more accurately, or provide a way to expose a theme option that allows fullwidth archives. Toolset is a bit restricted in that we must work in the framework created by Divi, including their sidebar and content areas for archives.