hello
is there a way to remove page title?
:)
Hi funkybytes75,
Do you mean the breadcrumbs+title of the page? Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.title_container {
display: none;
}
Regards,
Devin
Hello thanx for your answer… But it doesn’t seem to work… BTW, I would like to remove the title on only certain pages…
you could target each page via css and hide things:
body.postid-1 .main-title, body.postid-2 .main-title {display: none;}
You can also use the theme’s built in option on each page in the Layout meta box on the right hand side. Just choose the option you want (either show or hide the header) where it says:
Header Settings
Display the Header with Page Title and Breadcrumb Navigation?
with the dropdown there.
Regards,
Devin
thanx a lot… It’s great!