PDA

View Full Version : Style for Like Count


tonmo
09-29-2013, 03:12 PM
In the lower-right of every post on vb5, there's a count for total number of likes that post received. I'd like to infuse a style option that says if the number of likes is >1, display the count in bold red.

Here's the bit of code that displays the count. Ideas on how to implement the requirement?

<span class="bubble-content votecount ">0</span>
</span>

webmastersun
10-10-2013, 02:52 PM
You can try
.bubble-content votecount{color:red !important;font-weight:bold !important;}

regards,