Remove right-hand side bars

Hi, I’m using Shapely.

How can I remove the sidebar on my individual project pages?

All my pages except the blog are set to full width, but using WordPress portfolio option I can’t deactivate the right sidebar on individual projects.

So, how can I remove the right sidebar not only on that project but in every portfolio project that I create on the future?

Thanks

Hi @sinkinso,

Go to Appearance -> Customize -> Additional CSS and add this CSS Snippet in it,

.single-jetpack-portfolio #primary {
    width: 100%;
}
.single-jetpack-portfolio #secondary {
    display: none;
}

Let us know,

Thanks,
laranz.