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.
no subject
no subject
.page-entry .tag ul li a:first-child,
.page-entry .tag ul li a:last-child { display: none; }
Put that in your theme's Custom CSS, and as long as you're viewing a page in your own style it should remove them. If you want something that will have an effect across the site, you can put it in a Stylish style for the whole domain dreamwidth.org. To get them all, you'll need to look at the classes on the outermost div of all the pages you see them on and add more lines with that class instead of .page-entry.
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
no subject
.page-entry .tag ul li a:first-child,
.page-entry .tag ul li a:last-child,
.page-recent .tag ul li a:first-child,
.page-recent .tag ul li a:last-child,
.page-reading .tag ul li a:first-child,
.page-reading .tag ul li a:last-child { display: none; }
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
(no subject)
Gets rid of spaces too:
.tag li{
font-size: 0px !important;
}
.tag-text {
font-size: inherit;
}
.tag a {
font-size: [your layout's font size for tags];
}
.tag li:after {
content: ",";
font-size: [your layout's font size for tags] !important;
}
.tag li:last-child:after {
content: "";
}
.tag li>a:not([rel=tag]) {
font-size: 0px;
}
Edit: I fixed it.
Re: Gets rid of spaces too:
Re: Gets rid of spaces too:
Re: Gets rid of spaces too:
Re: Gets rid of spaces too:
Re: Gets rid of spaces too:
Re: Gets rid of spaces too:
Re: Gets rid of spaces too: