-
AuthorPosts
-
December 8, 2014 at 1:44 pm #160649
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
December 9, 2014 at 1:08 am #160919Hi 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. 🙂
May 1, 2016 at 12:40 pm #908090Hi, 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
May 1, 2016 at 6:33 pm #908309Hi 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!
May 1, 2016 at 7:23 pm #908346Thanks 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.
May 2, 2016 at 12:38 am #908598Hi,
You can try this code instead.
.page-id-77 .x-container.offset { margin: 0 auto; }
Hope that helps.
May 2, 2016 at 4:47 am #908783Perfect. Thanks.
May 2, 2016 at 6:13 am #908865You’re welcome.
-
AuthorPosts