Remove date and categories within blog

Hi

Does anyone know how to remove the date and category on the main blog page. I have seen this question asked and answered a few times so I apologies now. I have followed all the advise (CSS) but still it doesnt change ANYTHING.

Could I have some other CSS code that is conflicting with this new code?

Any ideas?

Hi Mick,

Thank you for writing in, please navigate to Theme Options > Blog and turn of the Post Meta



Hope it helps,
Cheers!

Hi - thanks for your note but unfortunately that is already off.

Hi Mick,

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

.blog .featured-meta {
     display:none;
}

Hope that helps

Thanks for your message Paul - I tried this before as I could see this is the code suggested to a few other people. It didnt work for me.

Hey Mick,

Perhaps there is an issue with the CSS code that you have in the Global CSS such as some CSS syntax error that is stopping the CSS code you are adding to work as expected.

To verify that, please copy all the codes that are in the Global CSS and paste it here.

It should provide some information if there are any CSS error that is causing the issue that you have to fix so that the CSS codes will work.

Hope this helps.

Hey Jade - Its saying there is a problem with line 642 - Expected COLON at line 642, col 12.blockquote {

This is the code
641 width: 100% !important;
642 blockquote {

Any idea? Could this really cause the issues?

Hello Mick,

Thanks for updating the thread.

Looking at the code you have shared line number 641 does not has closing bracket. Can you please share the CSS code over there so we can take a closer look? It’s evident that there is a issue of Syntax related error. Please share the CSS code for us to take a closer look.

Thanks.

How would you like me to share the code?

Hi Mick,

This is the issue and it has missing close bracket.

It should be like this

.single .x-main {
  width: 100% !important;
}
blockquote {
  border: none;
}

Hope this helps.

THANK YOU SO MUCH!!! Perfect!

We are delighted to assist you with this.

Cheers!

Thank you - this has worked on the main blog page but the date and cats still appear if you click ‘show more’ and on archive blog posts. How can I make this a global change?
Thanks

Hello Mick,

Thanks for updating the thread. :slight_smile:

Please add following CSS under Pro > Theme Options > CSS:

.p-meta {
    display: none !important;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

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