We do not provide support for hacks, so use them at your own risk. If you're not comfortable with coding, we recommend against using this hack.
By default, the project panel will display all of your projects. You can use a simple line of CSS code, however, to set a limit on the number or projects that will display in it.
For example, if you wish to set a limit of 20 projects on the Project Panel you can place the following CSS code under Customize > Advanced > Global CSS:
.pp-thumb:nth-child(n+20) {
display: none !important;
}
If you would like to remove only a particular project, for example 5, you can use the following:
.pp-thumb:nth-child(5) {
display: none !important;
}
If you need additional flexibility with the Project Panel, such as filtering or hover effects we recommend instead using a Portfolio Grid. You can place these in a custom footer to avoid having to place a Portfolio Grid on the bottom of each project page.