Quote:
Originally Posted by Quantnet.org
How do we highlight the area around the tag box in another color so people would notice it and more likely to tag the new thread.
I've tried to get people to tag for a while and maybe they just overlook it.
|
Certainly.
FIND in newthread
Code:
<fieldset class="fieldset" style="margin-top: $stylevar[cellpadding]px">
<legend>$vbphrase[tags]</legend>
If you want to change the background color, add
Code:
; background:#xxxxxx
after
Code:
margin-top: $stylevar[cellpadding]px
If you want to change the border color, add
Code:
; border: 1px solid #xxxxxx
after
Code:
margin-top: $stylevar[cellpadding]px
Of course, replacing xxxxxx with your hexidecimal code. So for example it should look like this:
Code:
<fieldset class="fieldset" style="margin-top: $stylevar[cellpadding]px; background:#DFF7FF; border: 1px solid #FF0000">
<legend>$vbphrase[tags]</legend>