PDA

View Full Version : remove colon in postbit


Chadi
04-05-2013, 02:16 AM
Hey does anyone know how to remove the automatically included : (colon) after the vb phrase in the <dt> postbit legacy fields?

Every field in postbit legacy on the left side column of the user info (which is content inside <dt> is automatically bolded and end with the : symbol. I'd like to remove the : symbol and bold.

Lynne
04-05-2013, 03:38 PM
It's done via CSS here:
.postbitlegacy dl.userinfo_extra dt:after, .postbitlegacy dl.user_rep dt:after {
content: ":";
}

So, add that to additional.css and set the content to what you want (none?).

Chadi
04-05-2013, 07:43 PM
Thank you!

Chadi
04-10-2013, 09:39 PM
Thank you Lynne. What about a vbphrase?

For example:

I have

$vbphrase[similar_threads]

Which Results in:

Similar Threads:

Even thought the text for the phrase is only

Similar Threads

Lynne
04-10-2013, 10:14 PM
Then it is probably using CSS just like the above was.