WailmerBoy1023
Member
Those sig limits are really ticking me off, I can't put my sig in there. Could an admin please make them bigger?
Don't you maen smaller SigSmart_Tech_Dragon_15 said:This is currently in debate. We will possibly extend the limit. For now, I'm afraid you'll have to get a bigger sig. I'm sorry.
Yeah, that's what I meant. Sorry about that.Justin125 said:Don't you maen smaller SigSmart_Tech_Dragon_15 said:This is currently in debate. We will possibly extend the limit. For now, I'm afraid you'll have to get a bigger sig. I'm sorry.
Ok then. Oh, could you tell me how to make sig limits on my forum?Smart_Tech_Dragon_15 said:This is currently in debate. We will possibly extend the limit. For now, I'm afraid you'll have to get a smaller sig. I'm sorry.
Edit: Mistake in sentence.
Sure, just use this code. Insert it in the footer, at the Board Wrappers section of the Admin CPWAILMERBOY1023 said:Ok then. Oh, could you tell me how to make sig limits on my forum?Smart_Tech_Dragon_15 said:This is currently in debate. We will possibly extend the limit. For now, I'm afraid you'll have to get a smaller sig. I'm sorry.
Edit: Mistake in sentence.
Smart_Tech_Dragon_15 said:Sure, just use this code. Insert it in the footer, at the Board Wrappers section of the Admin CPWAILMERBOY1023 said:Ok then. Oh, could you tell me how to make sig limits on my forum?Smart_Tech_Dragon_15 said:This is currently in debate. We will possibly extend the limit. For now, I'm afraid you'll have to get a smaller sig. I'm sorry.
Edit: Mistake in sentence.
sigWidth = Put width limit here
sigHeight = Put height limit here
tooBigText = 'Your signature is too big. Please make it ' + sigWidth + 'x' + sigHeight + ' pixels or smaller'
showScroll = true
And, there you go. You can also find codes at the Code Index at the IF Forum, which there is a ]
Is there any way I can make it differ from different user groups?
aww poo......Justin125 said:Sadly, no.
Smart_Tech_Dragon_15 said:Sure, just use this code. Insert it in the footer, at the Board Wrappers section of the Admin CPWAILMERBOY1023 said:Ok then. Oh, could you tell me how to make sig limits on my forum?Smart_Tech_Dragon_15 said:This is currently in debate. We will possibly extend the limit. For now, I'm afraid you'll have to get a smaller sig. I'm sorry.
Edit: Mistake in sentence.
sigWidth = Put width limit here
sigHeight = Put height limit here
tooBigText = 'Your signature is too big. Please make it ' + sigWidth + 'x' + sigHeight + ' pixels or smaller'
showScroll = true
And, there you go. You can also find codes at the Code Index at the IF Forum, which there is a ]
that's not the whole code
^taht's the whole code.Code:<!-- Signature size warning code by ticlo --> <style type='text/css'> .toobigsig { border: 2px solid red } .toobigsigtext { font-weight:bold; color:red } </style> <script type='text/javascript'> <!-- var tooBigText, showScroll sigWidth = 550 sigHeight = 150 tooBigText = 'Your signature is too big. Please make it ' + sigWidth + 'x' + sigHeight + ' pixels or smaller' showScroll = true e = document.getElementsByTagName('DIV') for (n =0; n< e.length;n++) { if (e[n].className == 'signature') { ct = '' ct = e[n].style.cssText if (ct != '') e[n].style.cssText = '' e[n].style.width = sigWidth +'px' e[n].style.height = sigHeight + 'px' e[n].style.overflow = 'hidden' if ((sigWidth < e[n].scrollWidth) || (sigHeight < e[n].scrollHeight)) { e[n].className = 'toobigsig' if (showScroll) e[n].style.overflow = 'auto' if (tooBigText && tooBigText.length != 0) { tbt = document.createElement('DIV') tbt.innerHTML = tooBigText tbt.className = 'toobigsigtext' if(e[n].nextSibling) e[n].parentNode.insertBefore(tbt, e[n].nextSibling); else e[n].parentNode.appendChild(tbt); }} else { e[n].style.width = '' e[n].style.height = '' e[n].style.overflow = '' if (ct != '') e[n].style.cssText = ct }}} // --> </script> <!-- Signature size warning end -->