• Resolved Imauser78

    (@imauser78)


    I hate being a newbie, I found the css code for removing my page title, but now i have a big space where it was which i don’t want, i keep searching and trying codes but nothing is working, can someone help?

    My theme is Newspaper and here’s a link to the site and the specific page i’m trying to remove it

    Thanks in advance 🙂

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter Imauser78

    (@imauser78)

    ok my link ended up in my sign out lol

    Did you remove the page title by using this code?

    .entry-title, .entry-title a {
        display: none;
    }

    Try following code and see the result:

    .td-post-title {
        display: none;
    }
    Thread Starter Imauser78

    (@imauser78)

    thats got rid of some, but not all of it, we are getting somewhere 🙂 i had tried similar code but must have got it wrong somewhere. Any ideas on the last bit?

    In addition to the previous code, put following code

    .td-crumb-container {
        display: none;
    }

    The above code will remove most of the white space. If you want to remove all the white space, then use this code:

    .td-post-header {
        display: none;
    }
    Thread Starter Imauser78

    (@imauser78)

    I had figured out that last little bit code and that it removes everything, i was then trying to find a work around but this theme is a pain in the backside, but its far better than the other theme i had 🙂

    Anyway, that has fixed the issue, although its a little bit higher than the space on the home page. I can live with that 🙂

    Thank you for your help on the issue, i can now live with this them an have what i wanted where i wanted it and laid out how i want it. The theme doesnt support what i’m doing, but as long as it looks ok front end, then im good 🙂

    Thread Starter Imauser78

    (@imauser78)

    Just to be clear for anyone working with the Newspaper Theme By TagDiv, the code you need to use is as follows…

    .entry-title, .entry-title a {
        display: none;
    }
    
    .td-post-title {
        display: none;
    }
    
    .td-crumb-container {
        display: none;
    }

    No page/post titles and no white spaces

    Glad you make it working as per your liking. You can fix the little gap between the post and page easily. The post’s wrap area is 8px higher than the page wrap area. You can make both same by using this code:

    .td-main-page-wrap {
        padding-top: 40px;
    }

    A little correction here @imauser78:

    If you are already using:

    .td-post-title {
        display: none;
    }

    then, you don’t need to use this code:

    .entry-title, .entry-title a {
        display: none;
    }

    as .entry-title, .entry-title a is a child of .td-post-title. Hiding the parent element will also hide all of its children.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Remove Space Where Title Was’ is closed to new replies.