- This topic has 2 replies, 3 voices, and was last updated 7 years, 11 months ago by Hash.
- AuthorPosts
- December 12, 2016 at 2:48 pm #1360easywaysParticipant
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
December 13, 2016 at 9:06 pm #1368SuzyParticipantIt’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.
December 22, 2016 at 10:54 pm #1436HashKeymaster - AuthorPosts
- You must be logged in to reply to this topic.