<style>
.entry-title {display:none;}
</style>
do you guys have other solutions? Plus I want the GREY colour which the page title is shown on in a different colour, how do I do that?
]]>The class you are applying is not present on the on the page thats why your css is not working.
Do you want to show the title which is inline with search bar and hide all the other two then follow the below instructions:-
1) To remove sidebar title you have to remove title from backend sidebar widget. Then automatically it will be removed.
2) TO remove the title above the post the add this css
.blog_single_post h2 {
display: none;
}
But this will remove title of all the post from all the pages.
If you want to hide the title which is inline with search bar the use below css:-
.page_head{
display:none;
}
and for widget follow the above given process.
Which text you want to make grey can you please explain it or mention the text here.
Best Regrds
]]>Can you please let us know which title you want to keep in the site so that we can help you removing the other two for the site.
Also, for adjusting the title background color, you need to add this CSS to your Custom CSS/ Additional CSS:
.hero-unit-small {
background: #DB2723;
}
You can adjust the color as per your requirement.
Hope that helps.
Thank you.
]]>Just to inform you that if you remove the title which is on the H1 tag, that will cause issue in SEO.
So, It is recommended not to remove that one from the posts.
However, can remove the H2 tag just above it by using this code:
.blog_single_post > h2:first-child {
display: none;
}
For the title background, you can try adding this instead for a better result:
.hero-unit-small {
background: #DB2723 !important;
}
Feel free to ask if you need anything else.
Thank you.
]]>thanks @soumendra
]]>Then you need to replace this code:
.blog_single_post > h2:first-child {
display: none;
}
With this for a better result:
.blog_single_post > h2:first-of-type {
display: none;
}
Hope that helps.
Thank you.
]]>For adjusting the sidebar background you can adding this CSS:
.span4.sidebar {
background: #6EBB25;
}
Hope that helps.
Thank you.
]]>