|
|
|
|
|||||||
| POF's UserPages Talk about your userpage, ask for opinions, ask for help, and give help. |
|
Login or Register now to see less ads. |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
|
||||
|
||||
|
HTML Codes
Note:All credit goes to Lemonzilla of TTC.
HTML Codes Hello, after reading this post I fount out users were allowed to use HTML in there userpages, which is great, but some people don't know a lot of HTML, so I made this thread to help other users. ----------------------------------------------------- Making Your Userpage Into Sections This is a wonderful code, yet very simple. This makes your page more organized by placing a bar between news, sections, etc. Code:
<hr> Scrolling Text (or Marquee) You can use this for a lot of things such as a scrolling news system, a way to get users attention, you can insert an img between the code to make it scroll, etc. (No Picture img is available) Code:
<marquee>Text here</marquee> iFrame This is some what useful if you want a visitor on your userpage to view another page, on your page. Code:
<IFRAME SRC="URL Here" WIDTH=300 HEIGHT=400></IFRAME> Phony Alert Message This has been probably one of the most used codes with userpages. Code:
<script type="text/javascript">
alert("message here");
</script>
Glowing Text WARNING: THIS WILL NOT WORK WITH PEOPLE VIEWING IT IN FIREFOX!!! Code:
<p align=center><table><tr><td style="filter:glow(color=blue strength=5);font-family:arial;font-weight: BOLD;font-size:'18pt'">Text</td></tr></table></p> ----------------------------------------------------- Text AreaThis makes all your text a little more organized. Code:
<TABLE BORDER="2" BORDERCOLOR="#C6C6C6" CELLPADDING="4" ALIGN="Center" WIDTH="50%"><TR><TD BGCOLOR="#EAE8E8">Your Text</TD></TR></TABLE> Edit Your Userpage! Note:All credit to above goes to Lemonzilla of TTC _______________________________________
__________________
*UPDATING* Quote:
My mood:
Last edited by Colombiano; 03-25-2008 at 02:47 AM.. |
|
#2
|
||||
|
||||
|
Added a new game: Biscuits Cursor Game!
Seems like I accidentaly erased the first part of the guide. I will have it back up soon. Can't seem to get the pictures up. Also I will get Biscuits HTML codes back up too.
__________________
*UPDATING* Quote:
My mood:
Last edited by Batleth; 11-03-2007 at 11:19 AM.. Reason: Consecutive Postings |
|
#3
|
||||
|
||||
|
Ugh, now you add these? I had to take them one by one off of TTC and add them to my userpage. Well at least now I don't have to worry if I delete part of it again.
__________________
Ace of spades. ![]() |
|
#4
|
||||
|
||||
|
Quote:
Added new stuff!!: Universal clock-Now it shows what time it is depending on what your computer clock says Christmas Timer with no Music so it does not interfere with music already on your userpage.
__________________
*UPDATING* Quote:
My mood:
|
|
#5
|
|||
|
|||
|
Do the userpages allow CSS? I'm guessing they do, since you're using a glow filter...
Also about that, why are you embedding a table within a paragraph and styling the table data? It's so much easier to just style the paragraph element, plus it reduces nesting of unnecessary elements. ![]() Also, Code:
<script language="javascript"> Code:
<script type="text/javascript"> ![]() Thanks in advance, -Elo |
|
#6
|
||||
|
||||
|
I love it. Great guide! +rep
__________________
Welcome to all you VMK Refugees!
|
|
#7
|
||||
|
||||
|
Removed the censored ones and added a code box for first HTML.
Thanks all for the feedback and Rep. Quote:
__________________
*UPDATING* Quote:
My mood:
|
|
#8
|
|||
|
|||
|
An element is one of those tags you use in the HTML code. Take, for example, the glowing text example.
Code:
<p align=center>
<table>
<tr>
<td style="filter:glow(color=blue strength=5);font-family:arial;font-weight: BOLD;font-size:'18pt'">Text</td>
</tr>
</table>
</p>
Code:
<p></p> - Paragraph start/end elements <table></table> - Table start/end elements <tr></tr> - Table row start/end elements <td></td> - Table data start/end elements Code:
<td style="filter:glow(color=blue strength=5);font-family:arial;font-weight: BOLD;font-size:'18pt'">Text</td> Anyway, the block can be rewritten to something like this: Code:
<p style="text-align:center; font:bold 18pt arial; filter:glow(color=blue strength=5);">Text</p> -Elo PS: The glow:filter CSS property does not work in Firefox because it is a Microsoft-proprietary CSS property. When Microsoft developed Internet Explorer, they failed to properly support some of the CSS1 specs (take a look at how IE renders the box model vs how Firefox does. Firefox gets it right, IE, not so much). Not only that, but they decided to create some IE-specific properties. These properties do not work in other browsers because the other browsers don't know how to handle the CSS. I'm sure this is all waaaaaay more than people want or even care to know, though. lol |
|
#9
|
||||
|
||||
|
URGENT: DO NOT use the Phony Alert Message code. All it does is put ads on your userpage and wipe everything away.
__________________
Welcome to all you VMK Refugees!
|
|
#10
|
|||
|
|||
|
Quote:
The alert script should be... Code:
<script type="text/javascript">
alert("message here");
</script>
|
|
#11
|
||||
|
||||
|
I figured it out. Thanks.
__________________
Welcome to all you VMK Refugees!
|
|
#12
|
||||
|
||||
|
Wow wonderful guide! This will take my forum smarts to a whole new level! THANKS!
|
|
#13
|
||||
|
||||
|
Thanks for this guide although my UP is still going to be horrible =)
|
|
#14
|
||||
|
||||
|
thx, this kinda helped...
|
|
#15
|
||||
|
||||
|
I have a Java Script code that me friend gave me... Although it is more like a trick code... xD
|
![]() |
|
|