Tags list.

Oct 14, 2007 13:20

Does anyone know the proper codes for putting tags in a list, instead of inline? I've tried all tweaking my codes, and even though I managed to get my tags in a list, there are commas, which I don't want.

Screenshots and codes behind here. )

sidebar, tags

Leave a comment

Comments 5

babyelefant October 14 2007, 10:39:18 UTC
make the commas invisible, by changing the font-size to 0 and by chnaging the color to the same one as the background, then change the fon-ize of the tag links to 8pt or something:

.sidebox #tags_sidebox {
font-size:0;
color:#ccc;
}
.sidebox #tags_sidebox a{
font-size:8pt;
}

Reply

cabaretnight October 14 2007, 12:25:00 UTC
Won't it make the tag links invisible too? I'm so sorry for troubling you. =X

Reply

babyelefant October 14 2007, 12:29:37 UTC
no, because you will have told the liks to have the fon-size 8pt, and just the normal font (the commas) will have font-size 0.

Just try it and you will see

Reply

cabaretnight October 14 2007, 12:36:08 UTC
Ooh thanks a lot!

Reply


aichan57 February 19 2008, 23:40:24 UTC
I'm trying to get my tags in a list too but it doesn't seem to work. I've tried the suggestions listed here but now my tags are still in a line and they're not separated by commas or spaces >_<

This is the code that I'm using now:

.sidebox #tags_sidebox {
display: list;
list-style: none;
text-align: left;
}
.sidebox #tags_sidebox {
font-size:0;
color:#efefef;
}
.sidebox #tags_sidebox a{
font-size:8pt;
}

Sorry I'm pretty much computer-retarded so all this code-stuff is super super difficult for me and any help would be very much appreciated!

Reply


Leave a comment

Up