Show all of a user's fandoms by default
Sep. 13th, 2010 02:59 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
This will hopefully become obsolete once tag clouds are introduced as an option (I've already made puppy eyes at support), but until then the following code will display all of a user's fandoms as a block of text, without having to click the "Expand full list" link.
Note: This isn't terribly semantic, of course, since it forces elements to be displayed that should be hidden according to their class names. But hey, makeshift. Suggestions for improvements are definitely welcome.
(ETA: screenshot)
#user-fandoms ul {
margin: 20px 0 25px 10px;
}
#user-fandoms ul li,
#user-fandoms ul li.hidden {
display: inline;
padding: 5px;
}
#user-fandoms ul li:first-child {
padding-left: 0;
}
#user-fandoms ul li a#expandable-link {
display: none;
}
Note: This isn't terribly semantic, of course, since it forces elements to be displayed that should be hidden according to their class names. But hey, makeshift. Suggestions for improvements are definitely welcome.
(ETA: screenshot)