• Living it Pure

    (@living-it-pure)


    Hello,

    I am new to using WordPress. First, I would like to remove the page titles from each page. Second, I would like to remove the large gap between the end of the header and the beginning of the text. How can I accomplish these two things? Here is a link to my website: https://www.livingitpure.com/

    I should note that I was able to add an // in the Editor under Page Templates to remove the titles. However, this made that large space worse. Any suggestions are very much appreciated. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • vtxyzzy

    (@vtxyzzy)

    You should create a Child theme to make your changes. If you do not, all of your changes will be lost if you update your theme.

    Try adding this to the end of your child theme’s style.css:

    #content { padding-top: 5px; }
    #content .entry-header { display: none; }
    ritesh55523

    (@ritesh55523)

    For removing page title from each page you have to delete this line :- <?php the_title(); ?>

    From your page.php file or your custom page template file that you created for your theme. Be careful doing this first take backup of your page.php file and then try to edit this file.

    or if you don’t want to edit the code your can use this Hide Title plugin for removing title from each page.

    Thread Starter Living it Pure

    (@living-it-pure)

    Thank you both very much! Both suggestions have worked wonderfully. I appreciate your help and hope you both have a great day!

    billynair

    (@billynair)

    I found that using a reset.css will help with a lot of weird issues you come across. You will have to go back and manually specify tags like the H1, H2 and such, but it is a lot faster than fighting with oddities browser assume you might want.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Gap between Header and Text’ is closed to new replies.