jordannamorgan: Alphonse Elric, "Fullmetal Alchemist". (FMA Al Rage)
Jordanna Morgan ([personal profile] jordannamorgan) wrote in [community profile] style_system2015-01-18 10:06 pm
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.

Re: Gets rid of spaces too:

[personal profile] royalball 2015-01-22 04:08 am (UTC)(link)
Did you make sure to fill in your layouts text size where it says "[your layout's font size for tags]"? The font size on your journal looks like 13px so this should work:

.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:

[personal profile] royalball 2015-01-22 04:36 am (UTC)(link)
Oh jeez I'm so sorry! I didn't test it enough in other circumstances before I originally posted it and I messed up one of my edits while trying to fix it too. Glad I could help you out!
filialucis: (Default)

Re: Gets rid of spaces too:

[personal profile] filialucis 2015-01-24 10:58 am (UTC)(link)
This is brilliant, thank you so much! It's so nice to be able to get rid of the horrible spaces as well as the arrows.

Re: Gets rid of spaces too:

[personal profile] royalball 2015-01-25 07:58 am (UTC)(link)
Glad I could help!