How to hide featured image and subheader on single portfolio page?

Hey guys,

I'm trying to replicate this single portfolio page: http://themes.muffingroup.com/betheme/portfolio-item/curabitur-et-ligula

However, I can't seem to hide the featured image/social buttons and the subheader on my demo page: http://www.modernhustlers.com.au/blog/?portfolio=abundant-entrepreneur

On the Add/Edit Single Portfolio page there are no options to remove these.

How can I hide those two things?

Comments

  • Hi,

    this item has been created a little bit different way then other regular portfolio items. Here we used muffin builder with the elements that you can see at http://snag.gy/7DFvr.jpg

    First 2 items are images, then we used 3 column items with code as below:
    <p class="big">Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas, ultricies eget, tempor sit amet suada fames ac turpis egesta gilla semper.</p>
    <p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum torto mes ac turpis egest loremligular quam, feugiat vitae, ultricies eget, tempor sit amet ante. Donec eu lib ero sit amet quam eges.</p>
    And then under them we used column item with css as below:
    <style>
    .single-photo-wrapper, .project-description { display: none; }
    </style>
  • Hi, thanks so much!

    Just one other question. How do I remove the subheader from the single portfolio pages? The bit where it shows the page title and the breadcrumb navigation. There doesn't seem to be an option to hide it.
  • You can do it using below css:
    .single-portfolio #Subheader { display: none !important; }
Sign In or Register to comment.