because suggestion ain't open i guess with wil have to do, um can i please get a code that will turn the data thats in a signature into an iframe (like the code tag does) when the information in it is big enough to stretch the forum?
Code:
- <script type="text/javascript">
- <!--
- /* Auto-Scroll Sig by Cr0w */
- var td = get('td','tag');
- for(t=0;t<td.length;t++){
- if(td[t].className == "post signature"){
- td[t].style.width = (vf_width*0.8);
- td[t].style.overflowX = "auto";
- }
- }
- //-->
- </script>
Untested; global footers.![]()
not working
try:
<script type="text/javascript">
<!--
/* Auto-Scroll Sig by Cr0w & Wrighty! =P */
var td = get('td','tag');
var w = (vf_width * 0.8) + 'px';
for(t=0;t<td.length;t++){
if(td[t].className == "post signature"){
var d = document.createElement('div');
d.style.cssText = "width: "+w+"; overflow-x: auto;";
d.appendChild(td[t].firstChild.nextSibling);
td[t].appendChild(d);
}
}
//-->
</script>
Global Footer
@Marc => Had to append a Div with the image in it! ^.^ Strangely that's the way I would have done it from the start. Not sure if your way would have worked or not!![]()
ty