• I have tried every thread that discusses this and nothing is working, I’ve added lines to the style.css and I’ve remove the H1 line from content.php but the Home page title is still showing (right under the navigation bar). This is extremely frustrating.
    Site is http://www.pinecrestinnrealty.com/pcirealty/ Only have the index page there now. Any help is appreciated!!

Viewing 15 replies - 1 through 15 (of 19 total)
  • Do not edit the theme itself. First create a child theme for your changes. Or install a custom CSS plugin.

    Thread Starter cds74

    (@cds74)

    The crazy thing is, I’ve put in the display none on my other WP sites and it worked fine (without child themes or plugin), is there something new in 3.9.1 that prevents? Wish there was better option settings in the control panel for minor things like these.

    is there something new in 3.9.1 that prevents?

    No.

    Wish there was better option settings in the control panel for minor things like these.

    There is. They are called child themes or custom CSS plugins.

    Thread Starter cds74

    (@cds74)

    Ok, so I created and activated a child theme and installed the plugin, what do I need to include to remove the entry-title?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Add that CSS that people recommend in your Child Theme style.css file. What is it, something like this: ?

    .entry-title {
     display: none;
    }

    Thread Starter cds74

    (@cds74)

    Thanks Andrew, that removed the title, now I have a huge whitespace area, any ideas?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What CSS is it people recommend?

    Thread Starter cds74

    (@cds74)

    .entry-title {
    display: none;
    }

    The same as you provided.

    Something is adding visibility: visible; to the heading markup. Have you tried:

    – deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.

    I’d also suggest that you try using Firefox with the Firebug add-on for this kind of CSS troubleshooting. Or use whatever developer tool is available in your web browser.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Instead of

    entry-title

    Try

    entry-header

    Thread Starter cds74

    (@cds74)

    This is a fresh install. The only plugins I have are Askimet, Helly Dolly and the Custom CSS that esmi recommended.
    The only custom CSS I have running is

    .entry-header {
    display: none;
    }

    The white space is huge.

    The only white space that I can see is caused by the margin-top on .site-content

    Thread Starter cds74

    (@cds74)

    I put in
    .site-content {
    margin-top: 0;
    }
    And that moved it up halfway, what I am missing?

    Nothing. That white space has now gone.

    Thread Starter cds74

    (@cds74)

    There is still whitespace between the Home navigation area and the “Your Source for…” line.

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘Twenty Twelve Remove All Entry Titles’ is closed to new replies.