I have a page created in VC. When I go into the Newsmag theme panel > Theme fonts > Pages. I select the fonts and sizes for H1 through H6. On the page, those fonts don’t change from the default font.
I’m using the “default” template. The page is http://helpuconquer.com/make-it-easier/
Interestingly, when I switch to the “Pagebuilder + page title” template, the fonts change to the ones specified in the Newsmag Theme fonts settings.
However, I don’t want a page title on this particular page. But, I do want to be able to change the fonts and sizes.
How do I make this work?
Thanks,
Hi
This is the default functionality when Visual Composer it’s used on page template default. You can use page-builder+title and hide page’s title using this css in theme panel > custom code > custom css: http://screencast.com/t/Ykcl5S7kylOG
.page-template-page-pagebuilder-title-php .td-page-title, .page-template-page-pagebuilder-title-php .td-page-header.td-pb-padding-side {
display: none!important ;
}
.page-template-page-pagebuilder-title-php .td-page-content{
margin-top: 0px;
}
Thanks!
That worked somewhat. The H1 through H6 fonts now follow the settings in the theme panel for the Make It Easier page. And, it doesn’t have title on the page.
I have a Contact page, but now it won’t show its title, before it did. I have other pages with the “default” template and their titles appear. The Contact and the other pages appear to have the same set-up and template, but display differently.
The Contact page really needs to have a title. If I would add pages in the future, they would likely need titles too. With the new CSS you offered I pasted into the theme panel, I’m assuming new pages won’t have titles.
Is there a way to exclude the title for just a particular page? In this case, Make It Easier.
Hi
The default template display page’s title when you’re not using Visual Composer on the page. When you’re using VC’s page-builder to ad block on the page the title is not displayed. For pages where you want the title to be displayed you can use page builder+title as that page template always display page’s title.
Also the above css hide page’s title for each page which uses page template + title. If you want to hide it only for a specific page replace .page-template-page-pagebuilder-title-php with .page-id-abc where abc it’s the numerical id of the page. To get page’s id follow this link: http://screencast.com/t/RHNZEYuPX
Thanks!