MyBB Community Forums

Full Version: html markup code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
<img src="/images/adminblue.gif">{username}/><span style="color: #f91a24;">{username}</span>

how can i combine these 2 codes into one code?
after adding the above, the chat shows 2 names in different colors, I need to eliminate the other colored name.

THNX
Try this:
<span style="color: #f91a24;"><img src="/images/adminblue.gif" /> {username}</span>
(2011-06-02, 07:26 PM)Aries-Belgium Wrote: [ -> ]Try this:
<span style="color: #f91a24;"><img src="/images/adminblue.gif" /> {username}</span>

Thank You very much, that worked perfectly!