Home Forums Total Remove title bar

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1360
    easyways
    Participant

    Hi everyone!

    I would like to remove the grey title bar where the name of the page/post is displayed, I just do not want to remove the title, but the whole bar. Is it possible and if so, how do I do that?

    Kind regards

    Julian

    #1368
    Suzy
    Participant

    It’s possible, and it will help if you are familiar with creating a child theme and editing html and php.

    The BEST way to remove the header bar entirely is to create a child theme, and within that child theme, copy the file page.php. Open that file in a text editor, and remove the following code:

    <header class="ht-main-header">
    	<div class="ht-container">
    		<?php the_title( '<h1 class="ht-main-title">', '</h1>' ); ?>
    		<?php do_action( 'total_breadcrumbs' ); ?>
    	</div>
    </header><!-- .entry-header -->

    Save the file.

    An alternate way is to remove the code (or comment it out) in the theme files directly. ANy changes you make to these files will be lost when the theme is updated though. Creating a child theme with Total as the parent is a better way.

    #1436
    Hash
    Keymaster

    @Suzy thanks for the detail explanation.


    @easyways
    the above mentioned way will work. Other alternate and easy way is to add custom CSS using some Custom CSS plugin or the field in the Custmizer if you are using latest version of WordPress.. Here is the CSS code

    .ht-main-header{
    display: none;
    }
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.