MyBB Community Forums

Full Version: Signature's border is doubled
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I don't realize how the signature's border is doubled. When the template was installed it worked nicely.
I'd changed something in the .css in the past but I don't remember what changes are been done.

[Image: screenshot-16.png]


.post_content .signature {
margin-top: 5px; 
border-top: 1px dotted #fff;
padding: 10px 0 4px 0;
}

Do you know a possible solution?  Rolleyes
Did you try removing thish line:

border-top: 1px dotted #fff;
Yes, there is no border then. Confused
Bump  Heart
Send me PM with your forum address.

There are two div elements with class "scaleimages" so for each of them a dotted border is printed. That is why you have two dotted lines. Maybe try to remove the outer div.

<div class="signature">

<div class="signature scaleimages">
<div style="text-align: center;" class="mycode_align">"War without end, No remorse, No repent, We don't care what it meant, Another day, Another death, Another sorrow, Another breath."<br>
</div>
<div style="text-align: center;" class="mycode_align">METALLICA</div>
</div>

</div>
Solved thanks.
I removed the div in the postbit_signature template.
I now see that I wrote it incorrectly. The repeating class is signature, not scaledimages.

So you need to remove this div:

<div class="signature">

</div>
I noticed, I did that.