Hi, how do I change the size of a featured image size on a project page? How do I turn it off if I want to?
Also, how do I change it on the portfolio page?
Thanks!!
Hi, how do I change the size of a featured image size on a project page? How do I turn it off if I want to?
Also, how do I change it on the portfolio page?
Thanks!!
I found the fix. To turn it off:
.post-content .entry-header img {
display: none;
}
To resize:
.post-content .entry-header img {
max-width: 50%;
}
Still don’t know how to resize the thumbnails on the main portfolio page though.
Hi,
Glad you found the it.
You mean you want to change the image size in here? https://colorlib.com/shapely/portfolio/ You want 3 column instead of 4?
Let us know,
Thanks,
laranz.
Hi, yes to change the image size on that page. Either 5 columns or max image width
NM, I found that too:
@media (min-width: 990px){
.shapely_home_portfolio .col-md-3.masonry-item.project {
width: 20%;
position: static !Important;
}
}
Actually, this code:
@media (min-width: 990px){
body.post-type-archive-jetpack-portfolio .col-md-3.masonry-item.project {
width: 20%;
position: static !Important;
}
}
Hi,
Glad you found the answer. Position static is not necessary though,
Let us know if you have any other questions.
Thanks,
laranz.