page-loader

Home Forums Minimal Portfolio – Free Portfolio Theme Quality images + remove project date, categories, … Reply To: Quality images + remove project date, categories, …

#2766
Abileweb
Keymaster

Hi Torange,

1. Filterable Portfolio plugin crop the image sizes. Navigate to WP Admin > Portfolios > General Settings. Choose Medium Large under the Image Size Option. Save the configuration and check.

2. you can hide portfolio details by css code. use below css code in style.css file

.project-content.grid.s8 {
width: 100%;
}
.project-meta.grid.s4 {
display: none;
}

3. Open header.php file and remove the bg-image src line no: 56
replace the line with below code before container class
<section class="page-header jumbotron">
then, css code for page title and breadcrumb color

.page-header .page-title {
text-align: center;
font-size: 25px;
}
.breadcrumb {
padding: 0;
background: none;
margin-bottom: 0;
display: block;
text-align: center;
}