1) Is there a way I can remove the links from the date on Transmogrified?
2) I would also like to know how to remove "(no subject)" from entries and comments that do not have a subject by editing layers. (I know there is a way to do it through CSS, but I don't like the slight space it leaves behind.)
2) I would also like to know how to remove "(no subject)" from entries and comments that do not have a subject by editing layers. (I know there is a way to do it through CSS, but I don't like the slight space it leaves behind.)
no subject
Date: 2012-01-10 11:49 am (UTC)Copy/paste the whole function. See where it says "$linkify"? Use "false" instead (no quotes).
2)
set all_entrysubjects = false;
set all_commentsubjects = false;
but I don't know if it'll leave any space. This is just the S2 props enabling/disabling this.
no subject
Date: 2012-01-10 12:17 pm (UTC)2) Applied that code to my theme layer, but it still leaves a space. From looking at the source code of my journal, it looks like it the "(no subject)" titles disappear by attributing a class called "invisible" to them. So I'm assuming that method is still done using CSS. Code here, if you were curious:
<div class="comment-title"><h4><a class=" invisible" href="http://awakened.dreamwidth.org/34502.html?thread=846534#cmt846534" title="no subject">no subject</a></h4></div>I still appreciate the help! Thank you!
no subject
Date: 2012-01-10 12:23 pm (UTC)no subject
Date: 2012-01-10 12:29 pm (UTC).comment .header h4 {
margin: 0;
}
no subject
Date: 2012-01-10 12:41 pm (UTC)I feel kind of silly now.
no subject
Date: 2012-01-10 12:44 pm (UTC)no subject
Date: 2012-01-10 01:13 pm (UTC)a[title*="(no subject)"] {
display: none; }
h3 a {
margin-bottom: 5px; }
h4 a {
margin-bottom: 5px; }
I feel so silly for not thinking about this. The h3 and h4 margins are of course still going to be displayed because they're not being hidden. The link is the only thing that would be hidden, so the margins would have to be added to the links.