Log in

View Full Version : Looking for a script to display banners in bottom part of the screen



ainarsgc
02-17-2009, 04:45 PM
Looking for a script to display banners (sliding line) in bottom part of the screen. Here is an example:
http://ads.delfi.lv/?page=b9

Thanks.

ainarsgc
02-17-2009, 05:48 PM
Exemple is here:

http://ads.delfi.lv/?page=b9

It's a black sliding line at page bottom.

ainarsgc
02-17-2009, 06:19 PM
The black sliding line with word "Delfi".

ainarsgc
02-17-2009, 06:52 PM
Yes, the example is on that website.

ainarsgc
02-17-2009, 07:53 PM
Which website? You donīt see any link in my first message in this thread?

ainarsgc
02-17-2009, 09:03 PM
There is a link included in my first message, after words "Here is an example:". I can not understand how is it possible that you don't see my link, but I see it.

ainarsgc
02-17-2009, 09:32 PM
So, the examle is here (http://ads.delfi.lv/?page=b9).

ainarsgc
02-17-2009, 10:24 PM
Snookerman,

After reading your messages I was thinking that links are not allowed here and program makes my own posted links visible to me, but not visible to other users. But it's not true. I just opened this forum from a different IP address and I can still see my posted link. So, I can not understand where is the problem why you can't see my link which I posted 3 times.

bluewalrus
02-18-2009, 02:57 AM
This is the code it looks like a fixed position scrolling marque.

http://ads.delfi.lv/?page=b9 <-- is the page.


<div id="psbl" style="overflow: hidden; visibility: visible; position: fixed; top: 207px; left: 0px; width: 1247px; height: 50px; z-index: 7898;">
<div id="adpsa" style="position: absolute; left: -847px; top: 0px; width: 0px; white-space: nowrap;">
<a target="_blank" href="http://delfiadlv.hit.gemius.pl/hitredir/id=bVdK5oLuz2k9xEAO3zTze8Wmj_fNZE_LUBq3ncMU7Zr.J7/stparam=wlqmcnkijw/sarg=0000000337D88340/url=http://ads.delfi.lv/">
</a>
<a target="_blank" href="http://delfiadlv.hit.gemius.pl/hitredir/id=bVdK5oLuz2k9xEAO3zTze8Wmj_fNZE_LUBq3ncMU7Zr.J7/stparam=wlqmcnkijw/sarg=0000000337D88340/url=http://ads.delfi.lv/">
<img height="50" width="1000" border="0" src="http://delfilv.adocean.pl/files/ljiobklkpd/lbglinrfnx/sliidosaa_rinda.gif"/>
</a>
<a target="_blank" href="http://delfiadlv.hit.gemius.pl/hitredir/id=bVdK5oLuz2k9xEAO3zTze8Wmj_fNZE_LUBq3ncMU7Zr.J7/stparam=wlqmcnkijw/sarg=0000000337D88340/url=http://ads.delfi.lv/">
</a>
</div>

ainarsgc
02-18-2009, 09:06 AM
bluewalrus, thank you for your reply. Unfortunately, your example doesn't work - it shows only a small image in the moddle of the page.

There are some scrolling marque scripts on this website, for example, this one:
http://www.dynamicdrive.com/dynamicindex2/memoryscroller.htm

But I need to display this scrolling marque at the page bottom and to add a posibility for users to close this marque.

ainarsgc
02-18-2009, 02:26 PM
I found thhis script. Unfortunately, there is a problem with this line

*{margin:0;padding:0}
If I remote it, white space appears before marquee, if I keep it, all design of my website becomes unusuable. Any ideas how to fix it?
Thanks.




<style type="text/css">
*{margin:0;padding:0}
/*html,body{height:100%}*/
h1,p{margin:0 0 1em 0}

#outer{
width:100%;
min-height:100%;
margin:auto;
border:1px solid #000;
border-top:none;
border-bottom:none;
position:relative;
text-align:left;

}
* html #outer{height:100%}

p.last{
padding-bottom:60px;
}




#base{
position:fixed;
bottom:0;
height:35px;
width:100%;
background:red;

}
* html #base{/* for ie6 and under*/
position:absolute;
bottom:0;
left:0;

}


<div id="base"><marquee behavior="scroll" direction="left" bgcolor="#dedede" width="100%" height="35" ScrollDelay="50" onMouseOver="this.stop()" onMouseOut="this.start()" loop="infinite"><table bgcolor="#dedede" cellpadding="0" cellspacing="0" border="0"><tr><td>your scrolling text here...... <a href="http://www.test.com">Link text</a> scrolling text</td></tr></table></marquee>
</div>