Stack Style & Meta in Archive Page

Hello, I’m using Integrity in Pro Theme.

  1. How can mack Stack Style Like this: http://demo.theme.co/integrity-1/?
  2. How can I hide/remove Meta in Archive Page? https://activerify.com/topic/blog
  3. How can i make meta below single page to Capitalize Each Word?
    https://activerify.com/the-good-the-bad-and-effective-digital-marketing-strategy

Please help ASAP.

Thank you

Hey @sovann,

1. Regretfully, there’s no demo import for Pro and it would take a lot of time to detail the setup of the demos. What you could do is download the Integrity 1 demo I’ve personally uploaded to a file host and install it in the Template Manager so you could load it to your page and examine the setup.
2. There’s no option to do this so, please add this code in Theme Options > CSS

.archive .p-meta {
    display:none;
}

3. This would also need CSS so please also add

.p-meta {
    text-transform: capitalize;
}

Hope that helps.

Sorry,

The CSS given for 2 & 3, not working.

Hi There,

It must be the cache issue, please clear all the plugin, browser caches and check again.

As the post meta is hidden on the blog page right now:

And it’s Capitalize Each Word on single post:

Regards!

I cleared cached and everything. Still not work. Can you help check it

I mean i want to hide the Meta Tag below the Post and Post Archive.

Hi,

To hide it, you can add this in Theme Options > CSS

.blog .entry-footer {
   display:none;
}

Hope that helps

Hello,

The Tags below the blog post still there at Archive post page: https://activerify.com/topic/blog and single post page: https://activerify.com/the-good-the-bad-and-effective-digital-marketing-strategy.

I want to hide those tags.

Please help.

Thanks

Hi There,

Please delete the previous CSS and add this custom CSS instead:

.entry-footer.cf {
    display: none;
}

This custom CSS will hide the post tags for all pages(blog, category, single, …).

Regards!

Thank you. It works now.

Glad we were able to help :slight_smile:

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