Home Forums Theme support Portfolio page content Reply To: Portfolio page content

To hide the box on the right, you can add this css code in wp admin -> appearance -> theme options -> general -> extra css content:

.portfolio-single-content {
 float: none;
 width: auto;
 margin-right: 0;
}

.portfolio-single-details {
 display: none !important;
}

If you only want to hide the existing content of the box, you can add this code in “Extra CSS Content”:

.portfolio-single-details .work-details-p {
 display:none;
}

As mentioned above, I would love to put my own values in that area, but every time I try it won’t save.

I’m not sure how you do that, do you use a plugin? Normally you have to edit the page template “single-portfolio.php” to add custom fields in this box…