Page 2 of 3

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Sun Dec 06, 2009 2:51 pm
by LDM
You could try the direction="up" within the html?

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Sun Dec 06, 2009 4:56 pm
by vi2doubleyu
LDM wrote:You could try the direction="up" within the html?
like I said, I've try it but all image (example : I input 5 image + link ) have scroll up together not one by one. I just want make all image have scroll up with vertical one by one. hope you can help me. thanks for your kindness.

regards

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Sun Jul 18, 2010 11:02 pm
by Mercenary
I was wondering LDM, if you could get Scrolling Affiliates Box Mod to work with the an advance marquee script like >> Image Crawler

That would be awesome. ;)

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Sun Jul 18, 2010 11:18 pm
by LDM
That may be easier than you think.

Download the js file, add it to root, and just add this instead:

Code: Select all

<script type="text/javascript">
marqueeInit({
	uniqueid: 'mycrawler2',
	style: {
		'padding': '2px',
		'width': '100%',
		'height': '81px'
	},
	inc: 5, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	moveatleast: 2,
	neutral: 150,
	savedirection: true
});
</script>
<br clear="all" />
<div class="forabg">
   <div class="inner"><span class="corners-top"><span></span></span>
<ul class="topiclist">
            <li class="header">
                <dl class="icon">
                  <dt >Links</dt>
               </dl>
                </li>
         </ul>
         <ul class="topiclist forums">
      <li class="row">
    <div class="marquee" id="mycrawler2">
ADD HERE YOUR HTML LINKS</div></li>
      </ul>
   <span class="corners-bottom"><span></span></span></div>
</div>
Totally untested and may need tweaking.

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Mon Jul 19, 2010 2:05 am
by Mercenary
Great amazing LDM, will test it and let you know m8.

Best Regards,

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Fri Jul 23, 2010 3:10 pm
by Mercenary
Hey LDM,
It worked m8, it needed a bit tweaking like you said but got it up and running.
Thanks and take care.

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Fri Jul 23, 2010 3:29 pm
by cisco007
thanks for pointing me to the script, i used it to replace some code on my site that was not xhtml strict, and this helped, thanks again!

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Wed Sep 15, 2010 12:36 pm
by doekie
Thanks for the tip I will try this out tonight!

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Wed Oct 06, 2010 1:14 am
by kristinapetrico
Thank you for this wonderful thread because it has so many information and tips that are very helpful.

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Tue Dec 14, 2010 10:02 pm
by Nano
Could you please give me the code for subsilver2 ?

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Wed Dec 15, 2010 11:31 pm
by LDM
I'm not too sure, I will have to have a look at the subsilver code. Is that what your board is running?

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Thu Dec 16, 2010 1:53 pm
by Nano
Yes my board is running a subsilver2 style. I will be very happy if you give the code soon.

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Sat Dec 18, 2010 2:00 pm
by Nano
Please :((((

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Sat Dec 18, 2010 6:13 pm
by LDM
Ok this is a way that it could work for subsilver, but am not at normal PC so is untested. Can you let me know if it works the same?

Instead of opening an affiliates page, open index body and find:

Code: Select all

<br clear="all" />

<table class="tablebg" width="100%" cellspacing="1">
<tr>
	<td class="cat" colspan="2"><h4>{L_STATISTICS}</h4></td>
Add above:

Code: Select all

<br clear="all" />

<table class="tablebg" width="100%" cellspacing="1">
	<tr>
		<td class="cat" colspan="2"><h4>Affiliates</h4></td>
	</tr>
	<tr>
		<td class="row1" width="100%"><p class="genmed"><marquee direction="left" scrollamount="7" onmouseover="this.scrollAmount=0" onmouseout="this.scrollAmount=7">
ADD HERE YOUR HTML LINKS</marquee></p></td>
	</tr>
	</table>
Add your link buttons to where it says ADD HERE YOUR HTML LINKS.

Re: Scrolling Affiliates Box on phpBB3 index [Mod]

Posted: Mon Dec 20, 2010 10:18 pm
by Nano
yeah man this is working! THANK YOU :DDDDD