Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @headshot2006

    You can hide the page title either by modifying your CSS or by modifying the page.php file.

    By CSS way you need to modfy the line as shown below in style.ss file in child theme’s folder.

    #sub_banner {
        text-align: center;
        background-color: #26AE90;
        box-shadow: 0px -3px 0px rgba(0, 0, 0, 0.1) inset;
        min-height: 10px;
        padding-top: 5px;
        padding-right: 5px;
        padding-bottom: 5px;
        padding-left: 30px;
        color: #CCC;
        display: none;
    }

    OR by modifying page.php file.You need to find and remove the below code in page.php file in child theme’s folder.

    <div id="sub_banner">
    <h1>
    <?php the_title(); ?>
    </h1>
    </div>

    Note: Please customize files of child theme, so your changes will not overwrite on theme update.
    For child theme Reference here..

    Best Regards!!

    Thread Starter headshot2006

    (@headshot2006)

    thanks for your replay. your options will remove the page title on all pages.
    i m looking for a solution to remove the page title only from my own start page.

    Hi @headshot2006

    Can you please give me your site URL for further detail.

    Thank You

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