Jordanna Morgan (
jordannamorgan) wrote in
style_system2015-01-18 10:06 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Entry tags:
Unwelcome arrow links surrounding tags
So, as of DW's latest code push, I'm seeing little arrow-shaped links on either side of every single tag on my journal entries. These links do nothing more useful than point to the last entry using that tag (or worse, an error page, if there's no earlier/later entry to point to). This seems like utterly redundant, pointless clutter to me.
Very simply, I do NOT want to be seeing these arrow links. If someone could provide me with some code for getting rid of them, I would tremendously appreciate it. Thank you.
Very simply, I do NOT want to be seeing these arrow links. If someone could provide me with some code for getting rid of them, I would tremendously appreciate it. Thank you.
Re: Gets rid of spaces too:
.tag li{
font-size: 0px !important;
}
.tag-text {
font-size: inherit;
}
.tag a {
font-size: 13px;
}
.tag li:after {
content: ",";
font-size: 13px !important;
}
.tag li:last-child:after {
content: "";
}
.tag li>a:not([rel=tag]) {
font-size: 0px;
}
Sorry I wasn't clear enough.
Re: Gets rid of spaces too:
(And sorry for the mixup. I saw you had edited the comment a few times, but you took out the separate note about changing the font size, so I thought it was just copy/paste then. My bad for not paying attention to the instruction within the actual code.)
Re: Gets rid of spaces too:
Re: Gets rid of spaces too:
(Now I can go back to my own business, and forget all the drama that's developed everywhere over the whole thing...)
Re: Gets rid of spaces too:
Re: Gets rid of spaces too: