Okay
  Public Ticket #896614
Remove Meta from Page Header Image only
Closed

Comments

  •  2
    Brian started the conversation

    How can I remove meta data from Page Header Image? Want the page title to show on Header Image only.  Ok to keep meta on other posts.  

  •  2
    Brian replied

    Please help.  I looked back thru threads, and I found/used the following CSS: 

    .meta-author {
        display: none !important;
    }
    .meta-category {
        display: none !important;
    }
    .meta-comment-count {
        display: none !important;
    }
    .meta-date {
        display: none !important;
    }
    #single-below-header {
        display: none !important;
    }
    I was able to get the date & category erased.  However, my name "Brian Wade" is still showing under the Title. http://www.lakewylieproperty.com/neighborhoods/river-hills-test/
    I don't want any meta displaying on the post header image.  Thanks!  
  •  8,998
    Tahir replied

    Hey Again, 

    Sorry for the Delay . Ticksy got updated and there were a few issues so we couldnt post a response earlier . 

    I see you got it working. 

    Bes.t


    ThemeNectar Support Team 

  •  2
    Brian replied

    Thanks, but it's still not working as I wanted.  All I did was make a change under Salient options panel > Blog > Blog Header Type > Variable Height Minimal.  Making this selection the header still displays the category "Neighborhoods" as your image in below response indicates.  When I change back to Blog Header Type > Full Screen with meta under, then the author "Brian Wade" shows up (see attachment .pdf) 

    What is CSS needed to remove all meta (except title) using any Blog Header Type?  

    If there is not a universal CSS I can utilize to accomplish this, then I'd prefer to use the Full Screen with meta under option for my displays. In which case, what is the CSS needed to accomplish this?  

    Much thanks.

  •  8,998
    Tahir replied

    Hey Again,

    Can you set the Option that you need so i can write up the css needed to remove the meta ?. 

    Bes.t


    ThemeNectar Support Team 

  •  2
    Brian replied

    Done. Set to Variable height minimal. Again, I don't want any meta (except title) on the headers. Thanks. 

  •  8,998
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    Brian replied

    It worked! Thanks so much for your help Tahir. Ticket closed. 

  • Alissa Wild replied

    Hello, I've tried this code with my theme but it has not worked. Would you be able to assist me with this?
    I would like to only show the blog post title and author - not the categories, date or amount of comments.

    Example of blog post: http://wearewildness.com/tuning-in-to-the-earth-this-winter/

    Thank you!

  •  8,998
    Tahir replied

    @Alissa,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a,#page-header-bg[data-post-hs="default_minimal"] #single-below-header span.meta-comment-count,#page-header-bg[data-post-hs="default_minimal"] #single-below-header span.meta-date {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team