You are viewing a single comment's thread.

view the rest of the comments →

0
4

[–] Nurdoidz 0 points 4 points (+4|-0) ago  (edited ago)

There certainly is! The class handle for 'x subscribers' is .subscribers and the 'users here now' is .users-online. If you want to modify what it says, just use this code as a reference:

.subscribers .word {
    visibility: hidden;
}
.subscribers .word:before {
    visibility: visible;
    content: "voat goats";
}
.users-online .word {
    visibility: hidden;
}
.users-online .word:before {
    visibility: visible;
    content: "voat goats spectating";
}

Edit: this code doesn't work in Internet Explorer. Here is an updated tutorial on a solution that works in all browsers.

0
2

[–] Chai_Ito [S] 0 points 2 points (+2|-0) ago 

Wow, thanks for such a fast response! Modding and playing with CSS are both first-time things for me, so this sub has been a godsend.

If you'd like to see the results of your fine tutorials (and offer any suggestions, that would be super awesome), stop in at Guilty Pleasure Music. I haven't settled on things quite yet, but the fact that I made any changes happen at all is a pretty exciting result already :)

0
2

[–] Nurdoidz 0 points 2 points (+2|-0) ago 

You are very welcome! Your sub's looking pretty snazzy, but the text may be hard to read in some areas. I recommend putting the text parts on sections that are more opaque, like this example I whipped up. If you'd like to achieve that look, here is the code:

.sitetable.linklisting {
    background-color: rgba( 255,255,255,0.8 );
    border-radius: 3px;
    padding: 8px;
}
.side {
    background-color: rgba( 255,255,255,0.8 );
    border-radius: 3px;
}
.comment.thread {
    background-color: rgba( 255,255,255,0.8 );
    border-radius: 3px;
    padding: 8px;
}

Otherwise, good luck on your journey in subverse design! :-)