|
|
Link #1 | |
|
「Darkly Charismatic 」
ArtistJoin Date: May 2008
Location: The Lounge
Age: 22
|
Signatures: Group Memberships Forum [Offtopic]
Quote:
Max height 160px = no text. |
|
|
|
|
|
Link #2 |
|
sleepyhead
AuthorJoin Date: Dec 2005
Location: event horizon
|
That only applies if you have images. xris has touched on this topic before. To use his words, they are not "anal" when applying the signature rules.
Just some text size 4 for signature is fine. Though the 6 line limit does not apply. You can also do this:
__________________
|
|
|
|
|
Link #3 | |
|
「Darkly Charismatic 」
ArtistJoin Date: May 2008
Location: The Lounge
Age: 22
|
Quote:
I am well aware of the forum rules concerning signatures, I make them on a regular basis. |
|
|
|
|
|
Link #4 |
|
Spoilaphobic
ScanlatorJoin Date: Jan 2009
Location: USA
Age: 26
|
If you want text, you have to make the image smaller. I have two lines of text, so my banner height is 120px (learned that the hard way). Some users get around it by other means and others break it without penalty, so yeah. I say ask a moderator before you change it, to be on the safe side and all.
__________________
|
|
|
|
|
Link #5 | |
|
「Darkly Charismatic 」
ArtistJoin Date: May 2008
Location: The Lounge
Age: 22
|
Quote:
and I know about how some people get away with it. Bribing the guards and all
|
|
|
|
|
|
Link #7 | |
|
Administrator
AnimeSuki Site Staff ModeratorJoin Date: Dec 2003
Age: 30
|
Quote:
That's not on-topic to this thread, but I need to stop that insinuation right now. Please just report any rule-breaking, and it will be dealt with. If you have an image that's 500 x 160: no text. Period.
__________________
|
|
|
|
|
|
Link #8 | |
|
「Darkly Charismatic 」
ArtistJoin Date: May 2008
Location: The Lounge
Age: 22
|
Quote:
What I mentioned about "bribing the guards" was meant as a joke ![]() I'm not some moron who goes around lolsigging every chance he gets
|
|
|
|
|
|
Link #9 | |
|
sleepyhead
AuthorJoin Date: Dec 2005
Location: event horizon
|
Quote:
Here, let me help you with that. First suround signatures with a block. Code:
<div class="sigblock">
<!-- signature goes here -->
</div>
Code:
// ==UserScript==
// @name Virtual Sig Ruler
// @namespace AS
// @description Virtual ruler for red.
// @include http://forums.animesuki.com/*
// ==/UserScript==
(function ($) {
var maxSigWidth = "500";
var maxSigHeight = "160";
function getUserName(current)
{
return current
.parent() // <div style="clear:both">
.parent() // <td class="alt1" ... >
.parent() // <tr ... >
.find(".bigusername")
.text();
}
function scan(container)
{
var height = container.width();
var width = maxSigWidth;
container.children("img").each(function() {
if ($(this).width() > maxSigWidth)
{
width = $(this).width();
}
});
if (height > maxSigHeight || width > maxSigWidth)
{
var username = getUserName(container);
alert("User: " + username + "\nProblem: Signature dimentions.");
}
}
$(document).ready(function() {
$(".sigblock").css("max-width", maxSigWidth+"px");
$(".sigblock").each(function() {
scan($(this));
});
});
}) (unsafeWindow.jQuery);
__________________
|
|
|
|
![]() |
| Thread Tools | |
|
|