MyBB Community Forums

Full Version: signature
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! Do not tell me html code to make the text (photo) dim, and when the cursor was plain text (photo) in a forum signature.
Signature code currently
<d> <hr size="1" width="25%" align="left" />
{$ post ['signature']}
Example:
[Image: Ts5kcllBsUM.jpg]
[Image: 1HUPT5p4k3k.jpg]
What should we tell you then, if you don't provide the details of your problems in words with link to your site for further inspection?
So you want the signature to be dim, or you don't want it to be dim?
Oh, transparent
try:

<div style="opacity:.1"> <hr size="1" width="25%" align="left" /> 
{$ post ['signature']} 
</div>

Works well when the mouse it still remains clear Sad
Try :

HTML
<div class="fancysig"> <hr size="1" width="25%" align="left" /> 
{$ post ['signature']} 
</div>

CSS
.fancysig {
opacity:.1
}
.fancysig:hover {
opacity:1;
}
Now it works, thanks.
Put in + rating