Registered: January 9, 2008 | Posts: 3 |
| Posted: | | | | I'm looking to make a movie quotes box sort of like the tagline one was made but my html knowledge is rudimentary at best. Any ideas on how I could do this? | | | Last edited: by ErikStraker |
|
Registered: March 15, 2007 | Reputation: | Posts: 5,459 |
| Posted: | | | | Here's a very basic way of doing it: Create an HTML window and replace the default code with this: Quote:
<HTML> <HEAD>
<SCRIPT TYPE="text/javascript"> <!-- <DP NAME="HEADER_VARS" Language="JavaScript" Comments="True" IncludeCast="False" IncludeCrew="False"> //--> function showquote() { var check = DP_Notes.indexOf("<quote="); if (check != -1) { quote = DP_Notes.substring(check, DP_Notes.indexOf(">", check)); quote = quote.replace("<quote=",""); } document.write(quote) } </SCRIPT>
</HEAD> <BODY onload="showquote()">
</BODY> </HTML>
And then all you need to do is put in the notes of the profile this: <quote= "insert quote here"> The speech marks are optional, and will show in the window if used. |
|
Registered: January 9, 2008 | Posts: 3 |
| Posted: | | | | Thank you so very much. Works great. |
|