SMF For Free Support Forum
Signup For Free Forum
March 21, 2010, 11:24:38 am *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Welcome to SMF For Free. The best free SMF Host
 
   Home   Help Search Arcade Gallery Login Register  

Pages: [1]
  Print  
Author Topic: how to make text move  (Read 8194 times)
0 Members and 1 Guest are viewing this topic.
mario
SMF For Free Full Member
*
Offline Offline

Posts: 103


po po po po po po pooooooo po po po po po po poo


View Profile WWW
« on: June 07, 2008, 08:14:25 am »

would anyone know how to make the text move at the top of the broweser like at this site-splashhotel.info i know this code here but i tried that in the html while editing it with dreamweaver and it didnt work some1 plz tell me how
Logged


LaundryLady
Global Moderator
*
Offline Offline

Posts: 3230


Internet Challenged


View Profile
« Reply #1 on: June 07, 2008, 08:25:23 am »

Try
Code:
<marquee>Your Text or Image</marquee>
Logged

Tspeed
SMF For Free Member
*
Offline Offline

Posts: 35


View Profile WWW
« Reply #2 on: June 07, 2008, 08:47:29 am »

And here is a tag with a few more attributes Smiley
<marquee behavior="" direction="" loop="" style="color: #33ff33;" bgcolor="#000080"/>
Logged


mario
SMF For Free Full Member
*
Offline Offline

Posts: 103


po po po po po po pooooooo po po po po po po poo


View Profile WWW
« Reply #3 on: June 09, 2008, 07:09:40 pm »

i know the marquee one but it didnt work maybe ill try the 2nd one but where in that would i add my text?
Logged


simply sibyl
Global Moderator
*
Offline Offline

Posts: 13309



View Profile WWW
« Reply #4 on: June 09, 2008, 07:12:46 pm »

Your text goes in between the marquee tags

<marquee behavior="" direction="" loop="" style="color: #33ff33;" bgcolor="#000080"/> text goes here </marquee>

For information on settings for the marquee tag  (behaviour, direction, style, etc.) check this site out:
http://www.htmlcodetutorial.com/_MARQUEE.html
« Last Edit: June 09, 2008, 07:15:09 pm by simply sibyl » Logged

mario
SMF For Free Full Member
*
Offline Offline

Posts: 103


po po po po po po pooooooo po po po po po po poo


View Profile WWW
« Reply #5 on: June 09, 2008, 10:57:56 pm »

tyvm ill go try it now xD well it dosent work at the title =\ like where it says Mozzila *site adress*
« Last Edit: June 09, 2008, 11:06:37 pm by mario » Logged


[Core28]
SMF For Free Member
*
Offline Offline

Posts: 32


<?php="('End');?>


View Profile
« Reply #6 on: June 09, 2008, 11:26:57 pm »

Hi, If I may make a suggestion I think it would be better not to use dream weaver for HTML and JavaScript. I would just use a text editor like Word Pad or DiDaPro. I use DiDa pro because it has a preview feature but a browser can be used for that so its your choice. Also i'd use the freewebs HTML editor to host your site and use dot.tk as a way to get rid of the embarrising freewebs.com part.
Logged

Caution keep out of childrens reach! Harmful if swallowed.
simply sibyl
Global Moderator
*
Offline Offline

Posts: 13309



View Profile WWW
« Reply #7 on: June 09, 2008, 11:35:28 pm »

mario..  ahhhh  I know what you are wanting to do now and you would have to use javascript I believe to accomplish that
Logged

Tspeed
SMF For Free Member
*
Offline Offline

Posts: 35


View Profile WWW
« Reply #8 on: June 10, 2008, 06:56:24 am »

Mario , do a google  search for "scrolling title bar script"

I just found this script in a few seconds lol

Scrolling Title

This script scrolls the title.
Paste the following script in the <HEAD> section of your page. Change the variable msg to your web page title. Change the scroll speed by changing the value of the variable time_length. Here it is 100, which means that each character will change it's position after 100 milliseconds, i.e a scroll speed of 10 pixels/second.

<script language="javascript">
// (c) Premshree Pillai
// http://www.qiksearch.com
// premshree@hotmail.com
// Use freely as long as this message is intact.
var msg = " Your Web Page Title ";
var pos = 0;
var spacer = " ... ";
var time_length = 100;
function ScrollTitle()
{
document.title = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos=0;
window.setTimeout("ScrollTitle()",time_length);
}
ScrollTitle();
</script>


Here is another
http://www.hscripts.com/scripts/JavaScript/title-scrol.php



You'll find many more as well , you'll just have to play with them till you find one that will work here.


Logged


simply sibyl
Global Moderator
*
Offline Offline

Posts: 13309



View Profile WWW
« Reply #9 on: June 10, 2008, 09:10:43 am »

That first one works.
Could get abit annoying though cus it also moves it on the browser tabs and in your taskbar.
Logged

Tspeed
SMF For Free Member
*
Offline Offline

Posts: 35


View Profile WWW
« Reply #10 on: June 10, 2008, 09:53:54 am »

heh , i didnt try it lol

i used to play with stuff like this but these days i lean more towards trying to keep things a little less tricked out to avoid conflicts or annoyances that make my head swim lol
In fact i'm about to go remove the birds chirping on my site that i added just yesterday, love the sounds but it hangs things up just as stuff like this title script could.

Always think twice before adding scripts or embedding things, you may just be turning off your visitors for some little thing that only you think is cool
Logged


simply sibyl
Global Moderator
*
Offline Offline

Posts: 13309



View Profile WWW
« Reply #11 on: June 10, 2008, 09:56:16 am »

Always think twice before adding scripts or embedding things, you may just be turning off your visitors for some little thing that only you think is cool

That is so true.   A forum is afterall a discussion board and if you put too many things on it , it can not only get very annoying but can possibly slow the forum down.    With forums, just like webpages, you want it to be organized, to look good, but to try to keep graphics and other things to a minimum so that it runs fast and they are able to post without huge lags due to alot of codes/graphics.
Logged

coder#1
SMF For Free Newbie
*
Offline Offline

Posts: 12



View Profile
« Reply #12 on: October 19, 2008, 01:27:43 pm »

ok this dosent wor idk if im doing it wronge or what but alwell
« Last Edit: October 19, 2008, 01:29:23 pm by coder#1 » Logged
๖ۣۜۜҳ̸Ҳ̸ҳ
SMF For Free Sponsors
*
Offline Offline

Posts: 822


View Profile
« Reply #13 on: October 19, 2008, 01:38:17 pm »

Tried it heres the result.

<marquee behavior="" direction="" loop="" style="color: #33ff33;" bgcolor="#000080"/> Hello  </marquee>

And it does'nt work or would it not work on posts?
Logged
simply sibyl
Global Moderator
*
Offline Offline

Posts: 13309



View Profile WWW
« Reply #14 on: October 19, 2008, 02:02:31 pm »

You can use html to do it in the header/footer/an html portal block.
You can do it in a post ONLY if you are the admin and ONLY if you use the html tags to do it, otherwise you have to use bbcode and there are no settings for it.

Using BBCode in a Post:
Code:
[move]text here[/move]


Using HTML in a Post:
(Only Admins can do this)

Code:
[html]  

put the marquee code here 

[/html]

Tutorial site for the marquee tag  (html)
http://www.lissaexplains.com/fun3.shtml
« Last Edit: October 19, 2008, 02:04:44 pm by simply sibyl » Logged



Pages: [1]
  Print  
 
Jump to:  



Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC
ServerBeach Coupon
Page created in 0.39 seconds with 16 queries. (Pretty URLs adds 0.125s, 2q)