Hide title on single portfolio page

Hey guys

I’m having a little trouble hiding a title on one portfolio page. Here’s the css I’ve tried without success:

.page-id-180 .entry-header {
display: none !important;
}

.page-id-180 .single-x-portfolio .h-landmark {
display: none !important;
}

.page-id-180 .entry-wrap {
display: none !important;
}

.page-id-180 .entry-title .entry-title-portfolio {
display: none !important;
}

.page-id-180 #h1.entry-title .entry-title-portfolio {
display: none !important;
}

I think I’m close!

Hi Heather,

Thanks for writing in! If you want to hide title on that specific portfolio item, try using the following CSS rules instead and add it into your X -> Theme Options -> CSS area.

.postid-180.single-x-portfolio .entry-header {
    display: none;
}

Hope that helps.

Awesome! Thank you!!

You’re welcome!
We’re glad @Darshana were able to help you out.

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