Quote:
Originally Posted by Charlie98902
I have a small issue and it may be because of one of the other mods used? I use HTML Markup on all my usergroups except, banned, awaiting & guests. My reg users use this :
Code:
<span style="font-weight: bold;"><span style="color: Black;">
. It shows up as the example but the whole thing is a link and the words username here is being shown on the post. Once I add the " " around the word black all is well but can get tiring to edit in time.
|
charlie-first of all, you'll need two closing span tags for your markup instead of one. i assume you do have it set up that way for your markup?
but rather than do this in two spans, i'd do one span, set it as a style, and add it to your css. so something like this -
Code:
<span class="reguser"></span>
and in the additional css for your style in the admincp -
Quote:
.reguser {color:#000000; font-weight:bold;}
|
perhaps that will help?