XF 1.2 Remove Title From Page Creation

Wesker

Well-known member
Application --> Create New Page --> Page Created
Title field is a "required" field.

The problem is that I don't want a specific page {or any) to display the text title on the page. So for example, I make a page with a title "XenForo Rocks". I don't want the title to display on the page. How do I update the CSS to fix this?
 
For all pages, add this to EXTRA.css:
Code:
.pagenode_container .titleBar h1
{
display: none;
}

For a specific page, add the node ID like so:
Code:
.node10 .pagenode_container .titleBar h1
{
display: none;
}
 
Top Bottom