Removing post titles on blog page

I have a few questions about designing the blog/posts page

  • How do I remove/change the title at the top of a blog page?

  • How can I remove the icon to the left of the title?

  • Is there a way to add other content to this page?

Summary

https://pltmontana.com/insights/
Example…
I want Featured Homes to be something like Insights

Hello @spiker,

Thanks for asking. :slight_smile:

You can add following CSS under X > Theme Options > CSS to remove title:

.x-landmark {
    display: none;
}

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

.entry-title:before {
    display: none;
}

Can you please elaborate the question with more details so we can provide you the solution?

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.

Thanks!

An example of something we would like to add is…

a headline… Insights
a short description

Hi There,

Thanks for updating the thread!
There is some confusion the above post. Can you please clarify what exactly you want to be the blog page. May a screenshot would work.
Also please confirm if the solution given by Prasant did work for you.

Thanks

Something like this…

I would also like to remove the line that is below featured homes, I would also like to remove the house and insights links on the top right.

Summary

Hello @spiker,

Thanks for updating the thread.

  1. To remove the line, please add following CSS under X > Theme Options > CSS:
.x-header-landmark {
    border: none !important;
}

2.You can remove breadcrumbs links from X > Theme Options > Header > Miscellaneous > Breadcrumbs.

Thanks.

Thanks, those both worked!

Any advise on how to make the blog page look like the screenshot?

Hello @spiker,

Thanks for updating the thread.

That will require some custom development work which falls outside the scope of support we can offer. However, I see that you are using Renew stack and in that regards I can point you towards the file and the path and based on the requirement you can make the necessary changes.

File name and path: /wp-content/themes/x/framework/legacy/cranium/headers/views/renew/_landmark-header.php

Before making any changes, please copy the file under child theme by creating necessary folders. Here’s some resources that you can take a look.

Thanks.

thank you!

You are most welcome. :slight_smile:

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