need help with a scrolling bar

specopkirbs

BANNED
Joined
Nov 28, 2008
Messages
920
Reaction score
752
im looking to include a feature like on buzzybloggers.com on my site.
it appears to be java script and scrolls down with the page.
it is the bar at the top with the link to the offer and the offer changes when you change page
can anyone show me how its done or ill pay a few bucks to have it done
 
Code:
<!--Sliding Panel Start-->
<script type="text/javascript" src="[URL="http://www.blackhatworld.com/blackhat-seo/view-source:http://www.buzzybloggers.com/wp-content/themes/Digital_Statement/Digital%20Statement/js/mootools.svn.js"]http://www.buzzybloggers.com/wp-content/themes/Digital_Statement/Digital Statement/js/mootools.svn.js[/URL]"></script>
<script type="text/javascript">
window.addEvent('domready', function(){
var mySlide = new Fx.Slide('top-panel').hide();
$('toggle').addEvent('click', function(e){
e = new Event(e);
mySlide.toggle();
e.stop();
});
});
</script>
<!--Sliding Panel End-->
thats what it is mate just google it edited: coppied the wrong bit of code lol
 
Last edited:
Back
Top