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;
}
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;
}
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 🙂
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.