HELP image marquee in custom module, HELP image marquee in custom module |
![]() ![]() |
HELP image marquee in custom module, HELP image marquee in custom module |
Nov 23 2004, 09:50 AM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 6 Joined: Aug 2004 Member No: 43,303 |
how can i make the "image marquee" thing in the custom bar and below... look at it in this site... http://www.xanga.com/sherlynie
i wan something juz like wat she have in her blog,d please help me with it.. thanks ... The custom module i using is: _______________________________________ <!-- begin code provided by createblog.com --> <script> titleContent = ' '; moduleContent = '<img src=" ">'; sub = subTitle.parentNode.parentNode.parentNode.parentNode.parentNode sub.insertAdjacentHTML('beforeBegin','<table border="1" cellspacing="0" cellpadding="4" width="100%" class="left"><tr><th valign="top" align="left" class="left">' + titleContent + '</th></tr><tr><td valign="top" class="left">' + moduleContent) sub.insertAdjacentHTML('beforeBegin','<BR>'); </script> <!-- end code provided by createblog.com --> _____________________________________________________ i saw some scipt is add this._____________ <!-- begin code provided by createblog.com --> <marquee>STUFF GOES HERE</marquee> <!-- end code provided by createblog.com --> ________________________________________ but i'm not sure whether is it using this script? which part & where to add it in? |
|
|
|
Nov 23 2004, 03:50 PM
Post
#2
|
|
![]() Um....Its meeee ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 2,218 Joined: Mar 2004 Member No: 8,264 |
umm you wan to create your own module? That is.. Custom Module.
Place in CUSTOM HEADER CODE <!-- begin code provided by createblog.com --> <style type=text/css> /* remove regular modules */ texttable.left, td.mainleft, table.left, table.navigation, table.search{display:none} table.blogbody tr td {width:0px; padding: 0px;} /* edit to your liking */ table.module { border: 1px solid #000000; width:160px; background-color:f2f2f2; } table.module th { background-color: #336699;font: bold 11px arial; text-transform: uppercase;color: #FFFFFF; border: none; } table.module td {color: #000000; text-align: left; border: none; background-image: none; } </style> <!-- add this below all the CSS --> <table border=0 width="660"><tr><td valign="top" width="160"> <table border="1" cellspacing="0" cellpadding="4" width="100%" class="module"><tr><th valign="top" align="left" class="module"><b>About Me</b></th></tr><tr><td valign="top" class="module"> <center><img src="http://p.xanga.com/USERNAME/profile.jpg"></center><p> <b>name:</b> uhhhh..<br> <b>gender:</b> errr<br> <b>hobbies:</b> blah blah<br> </td></tr></table><br> <table border="1" cellspacing="0" cellpadding="4" width="100%" class="module"><tr><th valign="top" align="left" class="module"><b>Subscriptions</b></th></tr><tr><td valign="top" class="module"> <!-- Add your subscriptions here --> <a href="http://www.xanga.com/SOMEONE">someone</a><br> <a href="http://www.xanga.com/SOMEONE2">someone 2</a> </td></tr></table><br> <table border="1" cellspacing="0" cellpadding="4" width="100%" class="module"><tr><th valign="top" align="left" class="module"><b>Bloggies</b></th></tr><tr><td valign="top" class="module"> <!-- Add your blogrings here --> <a href="http://www.xanga.com/blogrings/blogring.asp?id=200537">Xangans.com</a> </td></tr></table><br> <!-- Here's your CUSTOM MODULE.. copy and paste as needed --> <table border="1" cellspacing="0" cellpadding="4" width="100%" class="module"><tr><th valign="top" align="left" class="module"><b>CUSTOM MODULE</b></th></tr><tr><td valign="top" class="module"> La la la =] </td></tr></table><br> </td><td width="500" valign="top" align="left"> <!-- end code provided by createblog.com --> Place in WEBSITE STATS CODE <!-- begin code provided by createblog.com --> </td></tr></table> <!-- end code provided by createblog.com --> This is to place in the module to make the picture move right or left etc. CODE <!-- begin code provided by createblog.com -->
<marquee direction="left" height="230" scrollAmount="5" onMouseOver="this.scrollAmount=1" onMouseOut="this.scrollAmount=5" onMouseDown="this.scrollAmount=1" onMouseUp="this.scrollAmount=1"> <img src='IMG URL' border='0'> </marquee> <!-- end code provided by createblog.com --> |
|
|
|
![]() ![]() |