• Resolved thedameintl

    (@thedameintl)


    Hey, I’ve searched this help section but there is nothing to show how to remove the PAGE titles from each page. They take up SO much space and are unnecessary, I want to remove them. I’ve looked in the Editor code but can’t seem to find what I need to delete or edit. Would love a fix on this please.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Anders Norén

    (@anlino)

    Hi thedameintl,

    If you’re referring to the title displayed on the top of category/tag/date archive pages, you can hide it by installing a custom CSS plugin like Simple Custom CSS and entering the following code:

    .page-title { display: none; }

    Let me know how it goes.

    — Anders

    hi, just found this due my research how to change the size of the title area (wich is way too big for me, too).

    i installed simple custom css and entered the followed code:

    /* Enter Your Custom CSS Here */
    .page-title { display: none;}

    unfortunately nothing changes ??
    any ideas? changing the space to top and bottom of title line would be enough.
    awesome template anders! saw it and decided to relaunch my website!

    I have the same problem. Way to much space at the top of every page. I have only pages, no posts and all I want is to eliminate as much white space at the top around the title as possible.

    Thanks

    Theme Author Anders Norén

    (@anlino)

    If you want to hide the content titles on single pages, use the following CSS instead:

    .page.single-post .content > .post > .post-header { display: none; }

    Let me know how it goes.

    — Anders

    I just tried the last fix you offered and it worked. Thanks Anders!

    Hi! I tried all of these and other codes found on other websites and nothing seem to work. I would like to remove the title as well as the page header with the small triangle under the title.
    Thanks in advance!

    I found it!
    it’s in the files template-nosidebar.php or template-fullwidth.php
    open them (depending which one you are using) and delete:

    <div class=”post-header”>

    <h1 class=”post-title”><?php the_title(); ?></h1>

    </div> <!– /post-header –>

    there is the same in single.php if you want to do it with blog posts.

    I advise you to do it with a child theme though ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove Page Title’ is closed to new replies.