Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #160649

    CharliePryor
    Participant

    Hi theme.co

    I’ve got a page that is populated via a category. It’s an archive page, and as such, it isn’t really a page that can be edited directly in the post/page editor. So, my question is… how would I apply the CSS on this category?

    We want to remove post meta information on a single archive group/category. Thanks in advance for all you do.

    – Charlie

    #160919

    Paul R
    Moderator

    Hi Charlie,

    Thanks for writing in!

    You can add this under Custom > CSS in the Customizer.

    
    .category-100 .p-meta {
         display:none;
    }
    

    where 100 is your category id.

    Here is how to locate your category id https://theme.co/x/member/kb/how-to-locate-category-ids/

    Hope that helps. 🙂

    #908090

    Andy
    Participant

    Hi, was wondering how to do this (page targeting) with one specific page.

    My CSS is

    .page-id-77 .x-header-landmark {
    display:none !important;
    }

    and the page is roadtripsharing.com/map-it

    (want to remove landmark header)

    Thanks

    #908309

    John Ezra
    Member

    Hi Andy,

    Thanks for writing in! Are you needing help with this? It seems that you were able to solve your concern already. We don’t see the header landmark area on the page in question on our end. Please update us otherwise – thanks!

    #908346

    Andy
    Participant

    Thanks John,

    Yes there’s the landmark area there between the map icons and the navbar at roadtripsharing.com/map-it. i want to remove the landmark header but the css i mentioned above has not been effective at doing so if you can offer suggestions how to make that extra white space disappear.

    #908598

    Paul R
    Moderator

    Hi,

    You can try this code instead.

    
    .page-id-77 .x-container.offset {
        margin: 0 auto;
    }
    

    Hope that helps.

    #908783

    Andy
    Participant

    Perfect. Thanks.

    #908865

    Christopher
    Moderator

    You’re welcome.