Before Read my Article,
PLEASE HELP ME TO VOTE MY PICTURE AT
YOU ONLY NEED TO PUT YOUR NICK NAME AND YOUR EMAIL
You WILL NOT GET ANY EMAIL FROM THEM. Just put Ur name and it will done.
Thank you
************
Actually I wrote HTML marquee tutorial long time ago at Moving text marquee tutorial. But some reader confused if it apply in wordpress.
So here it is the way to make your sidebar text moving .
1. Find out what text that you want to move and grab the PHP code .
2. IF I want to change make my “latest post” move, that mean I must find the PHP code of “latest post”
<?php wp_get_archives(‘type=postbypost&limit=10′); ?>
3. Put the marquee code that U get from Moving text marquee tutorial. between them
example :
<marquee direction=”up” height=”200″ scrollamount=”2″ onmouseover=”this.stop()” onmouseout=”this.start()” width=”100%” align=”center”>
<?php wp_get_archives(‘type=postbypost&limit=10′); ?>
</marquee>
Explanation :
direction=”up” : from bottom to up movement
scrollamount=”2″ : Speed of the movement
onmouseover=”this.stop()” : When mouse over the text, the text will stop
onmouseout=”this.start()” : When mouse out from text area the marquee code will move again
width=”100%” : Width 100% from the table
Hope it clear enough.






