Close Please enter your Username and Password
Reset Password
If you've forgotten your password, you can enter your email address below. An email will then be sent with a link to set up a new password.
Cancel
Reset Link Sent
Password reset link sent to
Check your email and enter the confirmation code:
Don't see the email?
  • Resend Confirmation Link
  • Start Over
Close
If you have any questions, please contact Customer Service

My Blog

Welcome to my blog!

edit preview vs what we really see - html on aff
Posted:Aug 9, 2014 4:43 pm
Last Updated:Aug 25, 2014 5:28 am
4250 Views

edit preview vs what we really see - html on affor
AFF web designers/programmers not knowing the answer of 1+1


Good day everyone !

It seems that Asia Friendfinder (asia friend finder) changed of hand, and the new team hired web programers that probably claimed to be experts by showing a cracker jack box surprise being a false diplomae. Seriosuly, in the about last 3-4 months, Asia Friendfinder went down and down and down. It seems they hired people to destroy Asia Friendfinder and not to promote it. Thus, in their high intelligence, they destroyed all the html edit options Asia Friendfinder took time to promote before the new team got in place. None of the usual place where they could be used are no more well shown.

In the blogs, what you see in the preview box is REALLY what is suppose to be seen, but due to poor intelligence, it is not respected in the official website. Thus, WHAT YOU SEE IN THE EDIT PREVIEW is the correct format ! If you see it is ok, then your code is all ok.

Now for those not using those codes, you shouldn't be affected by their changes other than screwing even more most options on AFF.

Another thing, I sent an email telling them they screwed up the edit options, from which I just explained, but all they could reply is "We can not redo the problem you told about, please review your question and send it back"....Quite intelligent, isn't it ?

Philippe
(intelligent) Web programer / computer programmer (and NOT for Asia Friendfinder !!!!! )


0 Comments
Mail, blog, post design: more about HTML (How to use FriendFinder design possibilites)
Posted:Dec 20, 2008 4:59 pm
Last Updated:Dec 20, 2020 4:38 am
5664 Views

Hello all, here are some exemples and more explanation about HTML uses in FriendFinder websites ( FriendFinder restrict HTML to specific HTML codes ( with some little difference than real HTML ) wich they use "[" and "]" to identify them in the possible editing places on their websites. uses of "{" and "}" in here are for editing and showing purposes )


Main uses of HTML
Basicly, mostly every HTML tags have a start point and an end point (with some exception) wich the effect will be within those points. A start point is the word itself within "[" and "]" on FriendFinder wich has it's end point with a "/" followed by the same word.

Exemples:
{b}this is in bold{/b} - this is not in bold
{i}{b}this italic and bold{/b} and this is only italic{/i}

Note of the order the tags are writen as a start point and an end point. Mostly everything is possible to put in between a start point and an end point. Just don't mix the orders from the start point and the end point:

Not good: {b}{i}text{/b}{/i}
Good: {b}{i}text{/i}{/b}

Each start point has to have it's end point (other than the few exceptions). Putting only 1 end point to multiple start points will result to only have the end point put with the first start point before it related to it by orders.

Not good: {color #FF0000}red text{color #FFFF00}yellow text{/color}
Good: {color #FF0000}red text{color #FFFF00}yellow text{/color}{/color}


Upper case or lower case is not important. You can put capital letters or not it won't make a difference other than for you to better visualise your tags while editing your text.


Tables in HTML
Tables are there to organise the visualisation of the text. It doesn't mean that if a table is there that we will visualy see a border, a bakground color with it. It can be there only to regoup text or images.

In FriendFinder, 3 tags with options are used to define tables wich are the same as in HTML with the difference that they put "[" and "]" instead of -smaller than- and -greater than-:
{table}to specify where a table starts and end
{tr}to specify we start a new row in the table
{td}to specify we start a new column in the table
Source:
{table bgcolor=#B0B000 cellpadding=4 cellspacing=1}{tr}{td}{table}{/td}{td}to specify where a table starts and end{/td}{/tr}{tr}{td}{tr}{/td}{td}to specify we start a new row in the table{/td}{/tr}{tr}{td}{td}{/td}{td}to specify we start a new column in the table{/td}{/tr}{/table}

Text and all information should be put within the {td} and {/td} tags wich if not, it might result in the browser o crate a table region wich migth not be what you want. If you crete a table, you have to put the {tr} and {td} tags to creat at least 1 region in the table.

Options:
border=specify the border width as a number, 0 beeing none
width=specify the width, wich can be a number to represent it by pixels, or a % ( ex.: 100% ). If not specify, it will adjust itselfs to what is around it
height=specify the height, wich can be a number to represnt it by pixels, or a % ( ex.:98% )
cellspacing=to represent the space in between each region in a table
cellpadding=to represent the space in between the edges of the regions and the inner text, objects in a table
bgcolor=Specify what is the background color in the objects within a part of the table as a region.
align=to specify wht type of alignment will the content be on the horizontal display within a region. Possible values:left, center, right (by default, it's left when that option is not specify)
valign=certical alignment of a region within a table. Pssoble values:top, center, bottom
colspan=specify that the region in use will get that amount of columns within the {td} tag. IF you get it to be part of mixing up with another region wih you spcified rowspan including part of one to the other, the first one the broswer saw will take the region spcified
rowspan=nearly the same as about colspan, but for rows within the {td} tag
Exemple 1:
Some textsecond column, first row
second column, second row
Source:
{table bgcolor=#FFFF80 cellspacing=1 cellpadding=10}{tr}{td rowspan=2 bgcolor=#808000}Some text{/td}{td}second column, first row{/td}{/tr}{tr rowspan=2}{td bgcolor=#606000}second column, second row{/td}{/tr}{/table}

Explanations:
Light yellow borderI specified a background color in the table tag of a light yello (#FFFF80) wich is taken effect in all the table, but wich background colors in the {td} tags overwrite the background color. As I specified a cellspacing=2, this space is still part of the table, but not of the {td} and {tr} regions parts. Wich we seem to see a border, but in fact, is a cellspacing and a backgroudn color with regions within the {td} and/or {tr} havign options of bgcolor
text color, font, bold, etc. is not okeach region in a table is independent of text specification outside the table wich the light colors I use outside the tables are not puting the color in the tables. You should put a {color} taqg within the region to specify a color, or any other text visualisation modification you woudl want
different background colorsif no bgcolors are specified, the background will take the background color of it's related tag. in the exemple 1, we can see that there is a {td} with no bgcolor specification wich the browser looked in it s related {tr} tag. No bgcolor there too, wich the browser checked the information in the {table} tag wich it foudn a bgcolor option. if not, the table would take the background of where it is placed, as in this table here where you are reading this, no bgcolor has been specified wich the table is having a kinf of transparency.
small table or table wrong sizeWe didn't specify any width neither any height wich the table will take the parts around it (up, don, left, right) and will take the minum place needed. It will adjust automaticaly itself to the size of the images and text within it and/or within the table it would be in. You could specify a width=100% to make the table take the available width within where it is in the page

Exemple 2:
Source:
{table cellspacing=2 cellpadding=10 bgcolor=#FFFF80}{tr}{td bgcolor=#FFFF00}{table cellspacing=2 cellpadding=4}{tr}{td bgcolor=#808000}{photo happyDracco}{/td}{/tr}{/table}{/td}{/tr}{/table}

The exempple 2 is a simple way of seeing what we can do in putting a table withint a table. The most important thing when doing this, is that the new table as to be within the {td} part of the oither table. if not, it will result to something differtent wich is not recommended.

See the cellspacing with the bgcolor and cellpadding effects about the visualisation of the colors. We have thqt border effect with the colors we want.

You can create a table with multiple tables of regions of 1 of width, 1 of height, wich with it s abackground will let you see it as a computer picture. The problem, it's long to type it, to write it, for only a little picture kind of view.


Other information
Colors

There are few defined words that you can use as colors as "red", "blue", etc. There is a list wich you can easily access in here in FriendFinder. If you want a more precise color, you can use the "hex" ( as hexadecimal, 0-9 followed with A-Z; 0,1,2...8,9,A,B..E,F,10,11,12...18,19,1A,1B, ..1E,1F,20... ) way to write them wich has to be 7 digits:
#rrggbb ( red,green,blue )
where rr=00 to FF, gg=00 to FF, blue=00 to FF
00 is none of that color to a bright seeing of that color

the mix of those 3 in equivalent colors (ex.: #808080) will get you a grey, wich from 000000 to FFFFFF you can have 256 scales.

basic simple colors:
#FFFF00 -- yellow
#FF00FF -- purple
#00FFFF -- cyan (blue-green)


( hey, this line is a table! )


tags alone (whitout an end point):
{br} -- causes the text to beon a new line after it (line break)
{bling number} -- specific to FrindFinder, puts a bling
{photo name} -- specific to FriendFinder, puts a small photo
{blog id] -- specific to FriendFinder, puts a blog link
{member name} -- specific to FriendFinder, puts a member page link




Enjoy!


Phil


0 Comments
Mail, blog, post design templates (How to use FriendFinder design possibilites)
Posted:Dec 20, 2008 6:16 am
Last Updated:Jan 25, 2013 8:12 pm
5532 Views

Hello all, here are some templates, useful to have better looking mails, profiles, blogs, etc. in here. (replace all "{" by "[" and all "}" by "]" and pictures to the pictures you want in there as well as for the blings)


Tables and blings uses
Basicly, you can use tables and blings in every sections on FriendFinder websites where there is the options about editing text with options. You can add tables too in those sections. I'll explain more about how to work with them on another post soon. I would recommend you get the blings from my profile (or others rofiles if it's others blings) wich I am using my own blings in the templates in here.

Template 1
Good evening!

I had the good luck to get to see your profile earlier after seeing you as just having got online on the website wich they show this on the members home page. I been mostly suprised by the relax way you are on your hair on your picture. It was a small view of your picture, but it got me curious to ask myself more about you wich I went see your profile (wich I am writing this mail in here in it). I'd say quite interesting as not much answer, but wich brought me to want to know those answers.

I am canadian, I been born in here in province of quebec. I am caucasian wich I don't even think I have any asian blood from wome ancestors in my family. I don't know if it's good or bad, but I main;y have some irish blood wich shows with my freakles and tiny redish refelcts under the sun in summer. My hair are moslty auburn to brow thow. hahaha.

I'll wait to see if you will answer back, ask any questions or even start to have a tiny sense of curiosity about who I am.

Until next mail, if it happens, have a good day,

friendly,
Phil

Code:
{table width=100% cellspacing=2 cellpadding=5 border=0 bgcolor=#600000}{tr}{td bgcolor=#FFB0B0}

{table width=100% cellspacing=2 cellpadding=0 border=0 bgcolor=#400000}{tr}{td bgcolor=#FFD0D0}{table cellspacing=1 cellpadding=3 border=0 bgcolor=#800000 height=16 width=100%}{tr}{td bgcolor=#FFF0F0 align=center valign=center}{table cellspacing=0 height=1 cellpadding=0 border=0 bgcolor=#FFC8C8}{tr}{td width=130}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF7070}{/td}{td height=1 width=200 bgcolor=#FF6060}{/td}{td height=1 width=30 bgcolor=#FF7070}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td width=130}{/td}{/tr}{/table}{/td}{/tr}{/table}{table width=100% border=0 cellspacing=0 cellpadding=4}{tr}{td valign=center align=center}{table height=60 cellpadding=4 cellspacing=0 border=0}{tr}{td}{table cellpadding=6 cellspacing=1 border=0 bgcolor=#400000}{tr}{td valign=center align=center}{bling 12908}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td align=center valign=center}{table width=15 height=15 border=0 cellspacing=2 cellpadding=0 bgcolor=#800000}{tr}{td bgcolor=#B00000}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td}{table cellpadding=6 cellspacing=1 border=0 bgcolor=#400000}{tr}{td valign=center align=center}{bling 12908}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td align=center valign=center}{table width=15 height=15 border=0 cellspacing=2 cellpadding=0 bgcolor=#800000}{tr}{td bgcolor=#B00000}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td align=center valign=center}{table cellpadding=6 cellspacing=1 border=0 bgcolor=#400000}{tr}{td valign=center align=center}{bling 12908}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{/tr}{/table}{table cellspacing=1 cellpadding=3 border=0 bgcolor=#800000 height=16 width=100%}{tr}{td bgcolor=#FFF0F0 align=center valign=center}{table cellspacing=0 height=1 cellpadding=0 border=0 bgcolor=#FFC8C8}{tr}{td width=130}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF7070}{/td}{td height=1 width=200 bgcolor=#FF6060}{/td}{td height=1 width=30 bgcolor=#FF7070}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td width=130}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{/tr}{/table}{table width=100% cellpadding=30 cellspacing=0 border=0}{tr}{td align=center}{table width=100% cellspacing=2 cellpadding=8 border=0 bgcolor=#000000}{tr}{td bgcolor=#900000}{color #FFA0A0}{size 2}{i}{b}
{size 4}{color #FFE0E0}Good evening!{/color}{/size}

Text in here

friendly,
{size 4}{color #FFE0E0}Phil{/color}{/size}

{table width=100% border=0 cellspacing=0 cellpadding=0}{tr}{td width=100%}{/td}{td width=70 height=70}{table width=60 height=60 cellspacing=2 cellpadding=5 border=0 bgcolor=#FFFFA0}{tr}{td bgcolor=#202000 width=60 height=60}{bling 12934}{/td}{/tr}{/table}{/td}{/tr}{/table}{/b}{/i}{/size}{/color}{/td}{/tr}{/table}{/td}{/tr}{/table}{table width=100% cellspacing=2 cellpadding=0 border=0 bgcolor=#400000}{tr}{td bgcolor=#FFD0D0}{table cellspacing=1 cellpadding=3 border=0 bgcolor=#800000 height=16 width=100%}{tr}{td bgcolor=#FFF0F0 align=center valign=center}{table cellspacing=0 height=1 cellpadding=0 border=0 bgcolor=#FFC8C8}{tr}{td width=130}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF7070}{/td}{td height=1 width=200 bgcolor=#FF6060}{/td}{td height=1 width=30 bgcolor=#FF7070}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td width=130}{/td}{/tr}{/table}{/td}{/tr}{/table}{table width=100% border=0 cellspacing=0 cellpadding=4}{tr}{td valign=center align=center}{table height=60 cellpadding=4 cellspacing=0 border=0}{tr}{td}{table cellpadding=6 cellspacing=1 border=0 bgcolor=#400000}{tr}{td valign=center align=center}{bling 12908}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td align=center valign=center}{table width=15 height=15 border=0 cellspacing=2 cellpadding=0 bgcolor=#800000}{tr}{td bgcolor=#B00000}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td}{table cellpadding=6 cellspacing=1 border=0 bgcolor=#400000}{tr}{td valign=center align=center}{bling 12908}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td align=center valign=center}{table width=15 height=15 border=0 cellspacing=2 cellpadding=0 bgcolor=#800000}{tr}{td bgcolor=#B00000}{/td}{/tr}{/table}{/td}{td width=25}{/td}{td align=center valign=center}{table cellpadding=6 cellspacing=1 border=0 bgcolor=#400000}{tr}{td valign=center align=center}{bling 12908}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{/tr}{/table}{table cellspacing=1 cellpadding=3 border=0 bgcolor=#800000 height=16 width=100%}{tr}{td bgcolor=#FFF0F0 align=center valign=center}{table cellspacing=0 height=1 cellpadding=0 border=0 bgcolor=#FFC8C8}{tr}{td width=130}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF7070}{/td}{td height=1 width=200 bgcolor=#FF6060}{/td}{td height=1 width=30 bgcolor=#FF7070}{/td}{td height=1 width=15 bgcolor=#FF8080}{/td}{td height=1 width=15 bgcolor=#FF9090}{/td}{td height=1 width=15 bgcolor=#FFA0A0}{/td}{td height=1 width=15 bgcolor=#FFA8A8}{/td}{td height=1 width=15 bgcolor=#FFB0B0}{/td}{td width=130}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{/tr}{/table}

{/td}{/tr}{/table}


Template 2

Charming
Hello !

This is a template using 2 different blings I made. You could use the same blings by taking a copy of my blings from my profile.

Reference links to 4 pictures from my profile are in here.

Alot of table within other tables wich makes this template hving this look.

Phil
Really Charming!

Code:
{center}{table bgcolor=#200000 cellspacing=2 cellpadding=6 border=0 width=480}{tr}{td bgcolor=#C00000 align=center}
{table cellspacing=0 cellpadding=4 border=0 valign=center align=center}{tr}{td}
{table bgcolor=#300000 cellspacing=2 cellpadding=7 border=0}{tr}{td bgcolor=#800000}{bling 12908}{/td}{/tr}{/table}
{/td}{td}{table bgcolor=#300000 cellspacing=2 cellpadding=5 border=0}{tr}{td bgcolor=#800000}{table cellpadding=3}{tr}{td}{table bgcolor=#200000 cellspacing=1 cellpadding=3 border=0}{tr}{td bgcolor=#FF2020}{photo3 happyDracco}{/td}{/tr}{/table}{/td}{td}{table bgcolor=#200000 cellspacing=1 cellpadding=3 border=0}{tr}{td bgcolor=#FF6060}{photo2 happyDracco}{/td}{/tr}{/table}{/td}{td}{table bgcolor=#200000 cellspacing=1 cellpadding=3 border=0}{tr}{td bgcolor=#FF9090}{photo20 happyDracco}{/td}{/tr}{/table}{/td}{td}{table bgcolor=#200000 cellspacing=1 cellpadding=3 border=0}{tr}{td bgcolor=#FFC0C0}{photo15 happyDracco}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{td}{table bgcolor=#300000 cellspacing=2 cellpadding=7 border=0}{tr}{td bgcolor=#800000}{bling 12908}{/td}{/tr}{/table}{/td}{/tr}{/table}
{table width=100% bgcolor=#300000 cellspacing=2 cellpadding=5 border=0}{tr}{td bgcolor=#800000}{table cellspacing=2 bgcolor=#200000 cellpadding=0 border=0}{tr}{td}{bling 12801}{/td}{td bgcolor=#500000 width=100% align=center valign=center}{size 5}{color #800000}Charming{/color}{/size}{/td}{td}{bling 12801}{/td}{/tr}{/table}
{color #FFD0D0}{font face=Verdana,Arial}{size 4}
Hello !

This is a template using 2 different blings I made. You could use the same blings by taking a copy of my blings from my profile.

Reference links to 4 pictures from my profile are in here.

Alot of table within other tables wich makes this template hving this look.

{color #FF2020}{i}{b}{font face="Times New Roman",Arial}{size 5} Phil {/size}{/font}{/b}{/i}{/color}
{/size}{/font}{/color}
{table cellspacing=2 bgcolor=#200000 cellpadding=0 border=0}{tr}{td}{bling 12801}{/td}{td bgcolor=#500000 width=100% align=center valign=center}{size 5}{color #800000}Really Charming!{/color}{/size}{/td}{td}{bling 12801}{/td}{/tr}{/table}{/td}{/tr}{/table}{table cellspacing=0 cellpadding=14 border=0 valign=center align=center}{tr}{td}{table bgcolor=#300000 cellspacing=2 cellpadding=7 border=0}{tr}{td bgcolor=#800000}{bling 12908}{/td}{/tr}{/table}{/td}{td}{table bgcolor=#300000 cellspacing=2 cellpadding=7 border=0}{tr}{td bgcolor=#800000}{bling 12908}{/td}{/tr}{/table}{/td}{td}{table bgcolor=#300000 cellspacing=2 cellpadding=7 border=0}{tr}{td bgcolor=#800000}{bling 12908}{/td}{/tr}{/table}{/td}{/tr}{/table}
{/td}{/tr}{/table}{/center}


Template 3


Hello you!

Phil



Code:
{center}{table cellspacing=1 cellpadding=0 bgcolor=#000040}{tr}{td bgcolor=#B0B0FF width=500}{table cellpadding=0 cellspacing=1 bgcolor=#000000}{tr bgcolor=#3030FF}{td}{table cellspacing=0 cellpadding=0 border=0 width=16 height=16}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#EEAEAE}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#E51E1E}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{/table}{/td}{td width=100%}{center}{table cellspacing=0 cellpadding=0 border=0 width=60 height=2}{tr}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#FCFCFF}{/td}{td width=1 height=1 bgcolor=#FCFCFF}{/td}{td width=1 height=1 bgcolor=#FCFCFF}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#6B6BF6}{/td}{/tr}{/table}{/center}{/td}{td}{table cellspacing=0 cellpadding=0 border=0 width=16 height=16}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#EEAEAE}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#E51E1E}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{/table}{/td}{/tr}{/table}
{center}{table}{tr}{td valign=center align=center}{table}{tr}{td width=42 height=42 bgcolor=#0000D0 align=center valign=center}{bling 12679}{/td}{/tr}{/table}{/td}{td width=30}{/td}{td}{table cellspacing=2 bgcolor=#000090}{tr}{td}{photo7 happyDracco}{/td}{/tr}{/table}{/td}{td width=10}{/td}{td}{table cellspacing=2 bgcolor=#000090}{tr}{td}{photo11 happyDracco}{/td}{/tr}{/table}{/td}{td width=30}{/td}{td valign=center align=center}{table}{tr}{td width=42 height=42 bgcolor=#0000D0 align=center valign=center}{bling 12679}{/td}{/tr}{/table}{/td}{/tr}{/table}{/center}{table cellpadding=15 width=100%}{tr}{td}{table cellspacing=2 cellpadding=10 width=100% bgcolor=#000080}{tr}{td bgcolor=#8080FF}
{size 2}{b}{i}{color #000080}
Hello you!

{color #3030FF}Phil{/color}
{/color}{/i}{/b}{/size}

{center}{table cellspacing=2 bgcolor=#000090}{tr}{td}{photo1 happyDracco}{/td}{td}{photo2 happyDracco}{/td}{td}{photo3 happyDracco}{/td}{td}{photo4 happyDracco}{/td}{/tr}{/table}{/center}{/td}{/tr}{/table}{/td}{/tr}{/table}
{table cellpadding=0 cellspacing=1 bgcolor=#000000}{tr bgcolor=#3030FF}{td}{table cellspacing=0 cellpadding=0 border=0 width=16 height=16}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#EEAEAE}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#E51E1E}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{/table}{/td}{td width=100%}{center}{table cellspacing=0 cellpadding=0 border=0 width=60 height=2}{tr}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#FCFCFF}{/td}{td width=1 height=1 bgcolor=#FCFCFF}{/td}{td width=1 height=1 bgcolor=#FCFCFF}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#D6D6FD}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#C3C3FB}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#A9A9FA}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#9595F9}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#8080F8}{/td}{td width=1 height=1 bgcolor=#6B6BF6}{/td}{/tr}{/table}{/center}{/td}{td}{table cellspacing=0 cellpadding=0 border=0 width=16 height=16}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#EEAEAE}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#F66464}{/td}{td width=1 height=1 bgcolor=#E51E1E}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#2626ED}{/td}{td width=1 height=1 bgcolor=#7272FF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#9B9BF2}{/td}{td width=1 height=1 bgcolor=#7C7CF9}{/td}{td width=1 height=1 bgcolor=#4B4BFF}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{tr}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{td width=1 height=1 bgcolor=#121284}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{/tr}{/table}
{/center}


template 4






Gentle friend...

text







Code:
{center}{table width=100% cellspacing=1 bgcolor=#A00000}{tr}{td}{table width=100% cellspacing=1 cellpadding=3 bgcolor=#FFE0E0}{tr}{td bgcolor=#600000}{table bgcolor=#000000 width=100% cellspacing=1}{tr}{td height=2 width=100% bgcolor=#FF9090}{/td}{/tr}{tr}{td height=2 width=99% bgcolor=#FF5050}{/td}{/tr}{tr}{td height=3 width=98% bgcolor=#FF0000}{/td}{/tr}{tr}{td height=4 width=97% bgcolor=#B00000}{/td}{/tr}{/table}{br}{center}{table width=96% callpadding=10 cellspacing=1 bgcolor=#D00000}{tr height=100%}{td width=60 bgcolor=#000000 height=100%}{table width=100% cellpadding=0 cellspacing=0 height=100%}{tr}{td height=4 width=100% bgcolor=#400000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#380000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#300000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#280000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#200000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#180000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#100000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#080000}{/td}{/tr}{tr height=100%}{td height=100% valign=center align=center}{bling 12910}{br}{br}{br}{br}{bling 12910}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#080000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#100000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#180000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#200000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#280000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#300000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#380000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#400000}{/td}{/tr}{/table}{/td}{td}{table width=100% cellpadding=3 cellspacing=1 bgcolor=#800000}{tr}{td valign=center align=center bgcolor=#500000}{font face=Arial}{size 4}{b}{i}{color #900000}Gentle friend...{/color}{/i}{/b}{/size}{/font}{/td}{/tr}{/table}{table width=100% cellpadding=8 cellspacing=1 bgcolor=#400000}{tr}{td width=140 bgcolor=#A00000}{table cellspacing=2 cellpadding=4 bgcolor=#FF0000}{tr}{td width=104 height=104 bgcolor=#000000}{photo2 happyDracco}{/td}{/tr}{tr}{td width=104 height=104 bgcolor=#000000}{photo3 happyDracco}{/td}{/tr}{tr}{td width=104 height=104 bgcolor=#000000}{photo4 happyDracco}{/td}{/tr}{/table}{/td}{td width=100% bgcolor=#800000 rowspan=2 valign=top}
{font face=Arial}{size 3}{color #FFFF80}{b}
text
{/b}{/color}{/size}{/font}
{/td}{/tr}{tr}{td width=140 bgcolor=#700000}{/td}{/tr}{/table}{/td}{td width=60 bgcolor=#000000 height=100%}{table width=100% cellpadding=0 cellspacing=0 height=100%}{tr}{td height=4 width=100% bgcolor=#400000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#380000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#300000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#280000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#200000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#180000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#100000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#080000}{/td}{/tr}{tr height=100%}{td align=center valign=center bgcolor=#000000 height=100%}{bling 12910}{br}{br}{br}{br}{bling 12910}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#080000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#100000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#180000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#200000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#280000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#300000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#380000}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#400000}{/td}{/tr}{/table}{/td}{/tr}{/table}{/center}{br}{table bgcolor=#000000 width=100% cellspacing=1}{tr}{td height=2 width=97% bgcolor=#B00000}{/td}{/tr}{tr}{td height=2 width=98% bgcolor=#FF0000}{/td}{/tr}{tr}{td height=3 width=99% bgcolor=#FF5050}{/td}{/tr}{tr}{td height=4 width=100% bgcolor=#FF9090}{/td}{/tr}{/table}{/td}{/tr}{/table}{/td}{/tr}{/table}{/center}




Enjoy!


Phil


0 Comments
Blings (personnal emoticons, draws) design tricks and hints.
Posted:Nov 24, 2008 6:44 am
Last Updated:Aug 3, 2014 6:17 pm
6334 Views

Hello all, here are some simple, useful and helpful tricks about designing better looking blings (graphics used in mails, profiles, blogs, etc. in here).

Curves, circles, arcs
Add colors to create a smoother view to help the circle look better by making a patttern from one color to the other.

exemple:

would become:

Light effects, 3D effects
Work as said before about curves as colors patterns going to dark colors on one side and light colors on the other side. Keep figuring about a point where the light comes from on wich you will know where to get to put light colors and the dark colors.

exemple:
(light - top left)


Choosing colors
The main square where there are alot of colors patterns (as an exemple, from black to red, red to white and greay shades in between) is quite interesting but not complete. You should work with the " red(r), green (g) and blue (b) " numbers wich can be from 0 to 255.

0=dark
255=bright color (ex. : red)

as 255:
white=red, green and blue
green and red = yellow
green and blue = cyan
blue and red = purple

brown = red, 1/2 green, 1/3 blue (you can play around those settigns to get the kind of brown you woudl prefer, as less red, more red, etc.)

Glow effects (as from lamps, lights, etc.)
Get a dark color from the color you have as an illumination of the color of the light. As an exemple, if the light is yellow, try to get a really dark brown/black part of the yellow shades. From that color, paint 1 or 2 pixels (pixel=1 point of color) around the object, then select a bit more dark color then the precedent one and draw around the other color, etc.

Try getting it to at least a kind of well seen dark color for 7-8 pixels if you want the glowing effect to be well seen.

exemple:


Oblics, lines differents then up-down or left-right
As the curves, arcs, try to add a color pattern from the line colors to the surrounding color to make the line more straight and less as a point by point line. It will also make the line be a bit larger visualy wich will help keeping a standard thickness to your draw as if the line would be as left-right or up-down.

exemple:

would become:


Exemples
Here are some exemples about what I just explained as hints and tricks wich I used to do those blings:



Shades from light
Just use color darker than the back part where the shade will be on. As in this bling exemple, the back part is light yellow, but putting a darker yellow gives the effect needed. Add 1 pixel or 2 aroudn it ti smooth the cruves and oblics in it.

exemple:



Search words to use
Find as much as possible related words to what you did draw. As an exemple, if you draw a tree, don't only write "tree" as refering to it, but add words as "nature, green, brown, grey, life, happy, happyness, summer, fall, winter" etc. as what it could refer to what your bling is about. Also combine words as "red heart" or "I love you" wich mich be more precise as for your search. But beware at not too put too many as there is a limitation per bling allowed.



Have fun designing your blings, this is the most important part of it; be creative, alot of ideas can be used in here wich people didn't tought about yet!


Phil


0 Comments

To link to this blog (happyDracco) use [blog happyDracco] in your messages.