Full Width Portfolio Posts

Please let me know how I can edit the PORTFOLIO category and single post templates to be full width so that they are cohesive with the INTEGRITY 1 design. I cannot find a way to edit the template to remove the gray margins

Hi There,

Thank you for writing in, please add this on Theme Options > CSS


.archive .x-container.offset,
.single-x-portfolio .x-container.offset {
	max-width: 100%;
	width: 100%;
}

Hope it helps,
Cheers!

Hi,

Great solution :slight_smile:

How can we keep the featured picture in a container/fixed page width %, as now it appears 100% and is simply too big for the project.

Thanks!

Hi @MexConcept,

You can do it by adding this CSS as well

.single-x-portfolio .entry-featured {
	max-width: 960px;
	width: 100%;
        margin: 0 auto;
}

You can adjust the 960px value depending on your preferred layout width.

Thanks!