SIG LIMITS!

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:
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.
Don't you maen smaller Sig
 
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.
Ok then. Oh, could you tell me how to make sig limits on my forum?
 
WAILMERBOY1023 said:
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.
Ok then. Oh, could you tell me how to make sig limits on my forum?
Sure, just use this code. Insert it in the footer, at the Board Wrappers section of the Admin CP

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 link to in the Admin CP.
 
Smart_Tech_Dragon_15 said:
WAILMERBOY1023 said:
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.
Ok then. Oh, could you tell me how to make sig limits on my forum?
Sure, just use this code. Insert it in the footer, at the Board Wrappers section of the Admin CP

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?
 
Smart_Tech_Dragon_15 said:
WAILMERBOY1023 said:
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.
Ok then. Oh, could you tell me how to make sig limits on my forum?
Sure, just use this code. Insert it in the footer, at the Board Wrappers section of the Admin CP

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
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 -->
^taht's the whole code.
 
Back
Top