AnimeSuki Forums

Register Forum Rules FAQ Members List Social Groups Search Today's Posts Mark Forums Read

Go Back   AnimeSuki Forum > Support > Forum & Site Feedback

Notices

Closed Thread
 
Thread Tools
Old 2010-12-10, 08:19   Link #1
Kaze
「Darkly Charismatic 」
*Artist
 
 
Join Date: May 2008
Location: The Lounge
Signatures: Group Memberships Forum [Offtopic]

Quote:
Originally Posted by felix View Post
As for the publicity aspect, why not just add the group name in font-size 4 in your signature? I'm sure anyone interested will go there.
Not allowed.
Max height 160px = no text.
__________________
Kaze is offline  
Old 2010-12-10, 14:57   Link #2
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
Quote:
Originally Posted by Kaze View Post
Not allowed.
Max height 160px = no text.
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:

__________________
felix is offline  
Old 2010-12-10, 15:15   Link #3
Kaze
「Darkly Charismatic 」
*Artist
 
 
Join Date: May 2008
Location: The Lounge
Quote:
Originally Posted by felix View Post
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:

I was referring to image + text.

I am well aware of the forum rules concerning signatures, I make them on a regular basis.
__________________
Kaze is offline  
Old 2010-12-10, 15:52   Link #4
DragoZERO
Spoilaphobic
 
 
Join Date: Jan 2009
Location: USA
Age: 37
Quote:
Originally Posted by Kaze View Post
I was referring to image + text.

I am well aware of the forum rules concerning signatures, I make them on a regular basis.
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.
__________________
DragoZERO is offline  
Old 2010-12-10, 16:02   Link #5
Kaze
「Darkly Charismatic 」
*Artist
 
 
Join Date: May 2008
Location: The Lounge
Quote:
Originally Posted by DragoZERO View Post
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.
Yeah this I know as well, but he told MK to do it, and his sig is 160px tall, so I was just warning him.

and I know about how some people get away with it.

Bribing the guards and all
__________________
Kaze is offline  
Old 2010-12-10, 16:05   Link #6
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
Uhm, I didn't know he was so attached to his current signature...

He can attach text to the right of his signature, or create a 215 by 160 image with text and attach it to the right.
__________________
felix is offline  
Old 2010-12-10, 16:33   Link #7
relentlessflame
 
*Administrator
 
 
Join Date: Dec 2003
Age: 41
Quote:
Originally Posted by Kaze View Post
and I know about how some people get away with it.

Bribing the guards and all
What the... no. Just no. If you see a signature that doesn't match the rules, report it and it will be dealt with. Period. No one is exempt; not even the staff. It's not as though we are always looking at every single post with a virtual ruler, but we deal with whatever we notice. So please; report anything you find. If there is a point of confusion that needs to be clarified, then we can do so.

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.
__________________
[...]
relentlessflame is offline  
Old 2010-12-10, 18:50   Link #8
Kaze
「Darkly Charismatic 」
*Artist
 
 
Join Date: May 2008
Location: The Lounge
Quote:
Originally Posted by relentlessflame View Post
What the... no. Just no. If you see a signature that doesn't match the rules, report it and it will be dealt with. Period. No one is exempt; not even the staff. It's not as though we are always looking at every single post with a virtual ruler, but we deal with whatever we notice. So please; report anything you find. If there is a point of confusion that needs to be clarified, then we can do so.

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.
I know, whenever I see a sig breaking the rules, I do report those (and I'm talking about people swinging around 2 sigs at once, or entire wallpapers as sigs)

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
__________________
Kaze is offline  
Old 2010-12-10, 21:02   Link #9
felix
sleepyhead
*Author
 
 
Join Date: Dec 2005
Location: event horizon
Quote:
Originally Posted by relentlessflame View Post
It's not as though we are always looking at every single post with a virtual ruler, but we deal with whatever we notice.
Oh is that so, why didn't you tell us all this time. Here, let me help you with that.

First suround signatures with a block.
Code:
<div class="sigblock">
    <!-- signature goes here -->
</div>
Then install on your browser this userscript...
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);
If you're using Opera delete the "unsafeWindow." underlined part.
__________________
felix is offline  
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 05:16.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
We use Silk.