|
|
|
|
|||||||
| 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
|
||||
|
||||
|
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. ![]() |
|
#2
|
||||
|
||||
|
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:
|
|
#3
|
|||
|
|||
|
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 |
|
#4
|
||||
|
||||
|
I love it. Great guide! +rep
__________________
Welcome to all you VMK Refugees!
|
|
#5
|
||||
|
||||
|
Removed the censored ones and added a code box for first HTML.
Thanks all for the feedback and Rep. Quote:
__________________
*UPDATING* Quote:
My mood:
|
|
#6
|
|||
|
|||
|
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 |
![]() |
| Thread Tools | |
| Display Modes | |
|
|