How to hide thumbnail from portfolio header

Hi, How can i hide the thumbnail from the portfolio item header?
Thanks

Hi @infrarrojo,

Thanks for writing in.

You could do it via Custom CSS however I am not sure what thumbnail are you talking about. Would you mind sharing us the URL of your site and a screenshot of what you want to remove.

You could try this code below that may help.

 .single-x-portfolio .entry-featured{
display:none;
}

Hope it helps.

Let us know how it goes.

Thanks.

Hi Thanks it works.
And how can I remove the header image just for one specific portofolio item?
Thanks

Hi @infrarrojo,

Happy to hear that it works.

You could add CSS above, to the portfolio item page’s Custom CSS or you add portfolio item class id before the CSS class suggested above.

For example,

.postid-3572 .single-x-portfolio .entry-featured{
display:none;
}

You could check the link below on how to locate your page or post id.

Hope it helps.

Let us kno whow it goes.

Thanks.

Yes it works.
How can I get rid of the column and elements from the “Proyect Link” option for a single portfolio entry?
Thanks

Hi There,

You can add this to Theme Options > CSS

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

Append the post id (like Nico suggested above) if you want to apply this to a specific portfolio post only.

Hope it helps,
Cheers!

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