• I’m trying to hide the page titles on my site (whaleheartproductions.com) and have found three different plugins to hide the title but they all leave the space where the title would appear on the page. I’m hoping someone knows of a plugin (or simple instructions for a non-coder) to remove the page title AND THE PAGE TITLE AREA.

    Thanks in advance, Gabe

Viewing 3 replies - 1 through 3 (of 3 total)
  • The page titles and the spaces are already removed. Looks like this is what is there still:

    <div class="tagline inner">

    which has padding set in two places in the CSS:

    #main .inner {
        padding-top: 30px;
    }
    .tagline {
        border-bottom: 1px dotted #DDDDDD;
        margin: 0 auto;
        padding: 30px 0;
        width: 900px;
    }

    You may be able to get rid of all of that by adding custom CSS:

    .tagline, #main .inner {
       padding-top: 0;
    }
    
    .tagline h1 {
        display: none;
    }

    If the above doesn’t work, you may want to consult with the developer of your theme:

    https://themeforest.net/item/purity-responsive-clean-minimal-bold-wp-theme/639774

    Thread Starter gabevanlelyveld

    (@gabevanlelyveld)

    WPyogi,

    Your name is very fitting. The CSS you provided worked perfectly. I can’t thank you enough.

    To reiterate for anyone else wanting to solve this problem, I am using the Purity theme from Themeforest and added the following CSS to the CSS Stylesheet editor (Dashboard > Appearance > Edit CSS) in order to remove the space where my pages titles would normally be.

    The CSS is:

    .tagline, #main .inner {
    padding-top: 0;
    }

    .tagline h1 {
    display: none;
    }

    Thanks again, Gabe

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need plugin to hide page title and page title area’ is closed to new replies.