Remove released date
-
How do you remove the release date from album pages?
https://mindofyano.com/portfolio/design/
The blog I need help with is: (visible only to logged in users)
-
-
Yes, thanks i worked it out.
/*Remove release date*/
.record-details {
display: none;
padding: 0;
}Just don’t know how to get rid of the white space it leaves.
-
When you set the display property to “none”, it should be hidden without leaving any white space. You also don’t need any additional CSS as it won’t have any visual impact. This should work.
.record-details { display: none; }
That said, it looks like you’ve set the entry header to be hidden as well. In that case, there wouldn’t be a need to hide the record details as it is inside the hidden entry header.
- The topic ‘Remove released date’ is closed to new replies.