Full Width Single Portfolio Page Content

I removed the sidebar and the box-shadow on my single portfolio pages, however, I would like to have the ability to have my sections stretch the full width of the screen.

I tried using this css that I found digging through the forum, but it is not doing anything on the single portfolio pages. Any suggestions?

.single-x-portfolio .entry-info {width: 100%; !important;}
.single-x-portfolio .entry-extra {display: none; !important;}

/hide the feature image and extra sidebar on single portfolio/
.single-x-portfolio .entry-featured,
.single-x-portfolio .entry-extra {
display: none; !important;
}

/remove box-shadow from main entry/
.entry-wrap {
box-shadow: none;

}

Hello @11thwonder,

Thanks for asking. :slight_smile:

You can add following CSS under Pro > Theme Options > CSS:

.single-x-portfolio .entry-wrap {
    padding-left: 0;
    padding-right: 0;
}

Thanks.

Thank you! That did the trick!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.