• Hello,
    In previous Customizr versions I created my own page template with no title, and no little icon to the left of the title. Now with these new “hooks” that the php files are using, I have no idea how to get rid of the page titles again?

    I am very new to to css and html, and it was only through a lot of trial and error (and some awesome help from rdell) that I removed the titles last time.

    I have identified the file I THINK I need to edit “custom-page.php” (please correct me if I’m wrong). But I don’t see the part that I need to delete or change to remove the title.

    Here is a screenshot of what I mean.
    https://i761.photobucket.com/albums/xx260/Jayrizzo/HeaderProblem.png

    Please help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • I think you can do that with CSS rather than hack php files. Give me the link again and I’ll try to fix it for you.

    Thread Starter Chastise

    (@chastise)

    The site is:
    https://www.compfident.com

    Thanks again Rdell. Like I said before, they need to make MVP member status for you or something.

    Edit: I didnt mind editing the template files, because it allowed me to select my custom “No-Title Template” for whatever pages I didnt want the title on. I would prefer to select the pages with no title, manually. Wont putting CSS into the on-screen box make it remove all titles across every page? I want the few posts I do have on the site to have titles, just not the pages themselves.

    Thanks ??

    To select a specific page, each page has a unique identifier which can be seen in Firebug or Rt-Click View Source.

    So Custom Built Solutions can be changed with:

    #page-46 > header {
      display: none;
    }

    To stop them all, use:

    .entry-title.format-icon, .featurette-divider {
      display: none;
    }

    Thread Starter Chastise

    (@chastise)

    That works, thanks, as usual, for all your help Rdell.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Customizr 3.0.10 – How to make a no title template now?’ is closed to new replies.