:: Hide Codes Galore ::
Would you like to react to this message? Create an account in a few clicks or log in to continue.

:: Hide Codes Galore ::


 
HomeHomeRulesLatest imagesGallerySearchRegisterLog in

Friends For Sale Help Notes

View previous topic View next topic Go down
Author Message
ghiaa c:
ghiaa c:
HCG VIP Member
Female

Posts : 15544
Location : C:\Program Files
Mood : Good
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2008-10-16
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue





Friends For Sale Help Notes Vide
PostSubject: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeThu Jan 21, 2010 8:00 am

Credits to
Amir Faryar Zahedi
Spoiler:

Let's start :)

Once Only Bonus
$10,000,000
Spoiler:

$5,000,000
Spoiler:

$1,000,000
Spoiler:


$30,000
Spoiler:


$25,000
Spoiler:

Log in Bonus
The login bonus is $250,000 every 6 hours. That is $1,000,000 per day.




HTML HELP
Designing with HTML is not that difficult but it has to be done one step at a time. You make one change, then another and before long, your page changes completely. Start by formatting the text or adding single images. I will be happy to answer your queries and help you regarding HTML and how to customise and decorate your page.
Facebook's POST script removes many tags, therefore there are limitations on what could be included. Editing is done in the About ME section which you access by clicking on the Edit Description.
Do not post codes directly in a wall post for me to check as they can not be seen as code.

Applying Style
Facebook uses XHTML Strict and for better compatibility, XHTML tags should be used. In XHTML all formatting is done in the style="".But, basic tags like <b>bold</b>, <i>italic</i>, are allowed. Underline (<u>underlined</u>) is deprecated since it gets confused with links.
You can add the style to msot tags like: <div></div> or paragraph <p></p>

Start Here
This is the basic starting point that I usuaully use.

Code:
<div style="color: purple; font-size: 1.5em; padding: 10px; text-align: center;">

To start, I am going to explain how to style the entire About Me. You can apply the styling to sections of it too, once you understand the process.
First Step: Insert <div style=""> right at the start of your About Me and </div> right at the end. It is VERY important that you don't forget the end part or else you may break the HTML of the whole page. At this point, there is no change to the display until you add the required style to the style="" part of the <div style="">
Center Text and Images: text-align: center;
There is no need to use the <center></center> as everything will be centered.
Change Font Size: font-size: 1.5em;
Size 1.5em basically means 1.5 times whatever it was.

Change Text Color: color: blue;
The default color is black, so no need to use color: black; unless you have changed it and want to revert back.

Change Font: font-family: serif;
Changing font is a bit trickier, because if you use a font that the viewer does not have, it will revert to standard font. It is usually not a good idea to specify fonts, in my view. However, you can specify Generic font families (serif, sans-serif, cursive, fantasy, monospace)

Adding Padding: padding: 10px;
A little padding would prevent the text or images touching the edges of the container which I think looks nicer. You can use pixels or 'em' values (meaning as much space as letter 'm' occupies) for padding, like: padding 5px; or padding 1.5em;. This would add a uniform padding inside the container. You may also introduce various padding to each side i.e. top, right, bottom and left (in that order) buy using shorthand padding: 10px 5px 10px 5px;

Adding Width: width: 200px;
Unless you want the container to be narrower than the About Me section, there is no point in adding width parameter. Let the container fill the whole About me width.

Adding border: border: 1px solid red;
You can also set borders separately (border-top, border-right, border-bottom, border-left) i.e. border-top: 1px solid black;

Adding Background Colour: background-color: black;

Adding Background Image: background-image: url(http://..................);
In this example, an image is assigned to the background. It is a good idea also to include a background colour so if the image does not load for any reason, or if the image is not repeated, there is a colour instead.

Adding Shorthand Background:
background: black url(http://..................) no-repeat right bottom;

• Background Explanation:
background-color: This is the background colour which like previous section could be name, hex, RGB, etc. It could also be set as transparent.
background-image: The location of the image on the Internet.
background-repeat: Sometimes you want the image to be repeated i.e. like tiles, or you don't want to repeat it, or you only want to repeat it vertically or horizontally. Usual values: repeat | repeat-x | repeat-y | no-repeat
background-attachment: This is to set if the background scrolls or not. Usual values: scroll | fixed
background-position: This will set where the image is placed. It can be in percentage, length or set words. Usual values (first the vertical and second the horizontal): top | center | bottom & left | center | right
If any of these attributes are not set, the default value will be used which is: repeat top left scroll

Background for the whole Page:
Due to inconsistent support for the CSS properties (z-index), especially with Internet Explorer, such coding should not be attempted. The page will become unusable for IE users.

Example with some of above:
Code:
<div style="color: navy; font-size: 1.5em; padding: 10px; text-align: center; background-color: #f0f8ff; background-image: url(http://backgroundsarchive.com/images/pub/2/2100xqgjbnba0q.jpg); border: 1px solid #dcdcdc;">

--- all your content ---

HTML Line Breaks
Use the line break tag so that your text/image etc would move to the next line. Use Two break tags, one for break and the second for a line gap/space if you want it.
Break Tag: <br />

Adding Links
Link Example:
Code:
<a href="Link to the page">Text that people can click</a>

Adding Images
To add images, you simply use the image tag. If you wish to add a link also, you enclose the image tag with the link tag. Depending on the browser you use, to find the location of the image, just right click on the image, choose property and copy the address (or copy image location in Firefox).
Note: It is a bad idea to upload images that are available on facebook to 3rd party image sites. FB caches images and they load a lot faster. I have seen some pages that are a meter long. In my view, any page that requires more than 3 scrolls, is too long.

Blank Image Example:
Code:
<img src="" alt="" />
Blank Image plus Link Example:
Code:
<a href=""><img src="" alt="" title="" /></a>
Explanation:
href= Link to the person's page
src= location (URL) of the image on the internet
alt= Text that will be displayed if image could not be loaded, could be left blank, or put the name of the person
title= Text that would be displayed when people move their mouse over the image, could be left out, or put the name of the person

Removing Links/Junk from Images
Look at this example:
<a href="http://www.glitter-graphics.com"><img src="http://dl9.glitter-graphics.net/pub/931/931169jw9yrqqaf6.jpg" width=307 height=432 border=0></a><br><a href="http://www.glitter-works.org" target=_blank>glitter-graphics.com</a>

All you really need is the part in BOLD
Blank image code + image url

Put it inside the code:
Code:
<img src="http://dl9.glitter-graphics.net/pub/931/931169jw9yrqqaf6.jpg" alt="" />

Adding Picture and Link to your FFS Friends
You can use a <div></div> tag or <p></p> tag to place the images and links inside.
I centre the contents inside it, but if you are going to have text inside, it is better to use a paragraph tag and centre that too. I add a little padding so things don't get stock to the edges which I think is ugly. Without the scrollbars, 7 images will line nicely, with them maybe six. Therefore put a Line Break after every 7 sets.
I prefer to use the small thumbs, but you can use any image size that you wish. FB images come in 4 usual formats: (200 x **), (100 x **), (50 x **) and (50 x 50).
If you want the small thumb, just find the location of the images that are put next to wall comments.

Filled Example:
Code:
<a href="http://apps.facebook.com/friendsforsale/users/show/122627927"><img src="http://profile.ak.fbcdn.net/v22941/1950/11/n1263598424_7551.jpg" alt="Ghia Heyy" title="Ghia Heyy" /></a>

Due to New CSS changes to FFS, there is a limit to where you can place images outside the about me.

Placing Images Outside About Me Section
To place images outside, the Absolute Positioning of HTML/CSS is used. Absolute positioning, is relative to the box container that it is placed in. The offset amount can be adjusted to fix the position of the image relative to its container (which is the About Me section). It does not really make any difference where inside the About Me section you enter the code, unless if you place it inside another container, but it is best to put them right at the start.
Blank Image Example:
Code:
<img src="" style="position: absolute; left: 515px; top: -80px;" alt="" />
Example:
Code:
<img src="http://sl.glitter-graphics.net/pub/722/722723zjzkg1lj8s.gif" style="position: absolute; left: 470px; top: -160px" alt="" />
Explanation:
left: This property specifies how far a box's left content edge is offset to the right of the left edge of the box's containing block. top: This property specifies how far a box's top content edge is offset below the top edge of the box's containing block . A negative figure would mean higher than the edge.
right: This property specifies how far a box's right content edge is offset to the left of the right edge of the box's containing block.
bottom: This property specifies how far a box's bottom content edge is offset above the bottom of the box's containing block.
Now, if you increase the negative 'top'..it goes up; decrease it and it goes down, so top: -400px is higher than top: -350px
If you increase the 'left' it goes right, if you decrease it, it goes left. So left: 300px will be more to the right than left: 200px. Depending on the width of the image, value bigger than left: 700px would put the image outside the page.
N.B.1 Absolute Positioning is best suited to positioning in a general area. Exact pixel-perfect positioning should not be attempted. Internet Explorer shows the image higher than Firefox and Opera.

N.B.2 Please note that covering our sponsor ads and/or your pets with graphics is a violation of our TOS, please remove the images that are covering the top banner and any images that might be covering your pets.

Adding Scrollbars
There are times that the section is becoming too long. Like what you see on this page, I have added scrollbars since the FFS Help and HTML Help sections are very long.
In order to have compatibility with older browser that do not support overflow-y which is CSS3, I have added the overflow: auto; and made overflow-y !important;
On the examples on my page, I only set the height since I wanted the width to fill the entire section. It is possible to set the width too, if desired.
Example:
Code:
<div style="height: 400px; overflow: auto; overflow-y: scroll !important;">
--- the scrolling section ---
</div>
In this example, the total height of the section is fixed at 400 pixels and since it contains text which will automatically wrap, there would not be any horizontal scrolling. It is possible to strings a set of images without spaces which would result in horizontal scrolling. The use of horizontal scrolling is more limited and it is generally considered to be ugly.
Scroll-bar Colours:
Scrollbar colours are not standard HTML/CSS and they are not fully supported by all browsers. I personally don't use them.

How to make a Table
Start a Table (centred): <table style="text-align: center; margin: auto;">
Start a Row: <tr>
Start/End a number of Cells: <td>....</td><td>....</td>.......
finish the first row: </tr>

Start a 2nd row: <tr>
Start/End a number of Cells: <td>....</td><td>....</td>.......
Finish the 2nd Row: </tr>
..
..
..
Start the last Row: <tr>
Start/End a number of Cells: <td>....</td><td>....</td>.......
Finish the last row: </tr>

Finish the Table: </table>
To set the width, add it as a style i.e. <td style="width: 100px;">. Remember that once you set a width for a cell, all cells under it (the column) will have that width. So you only have to set it for the <td> of the FIRST row.

• Gift Wall
Note: With so many gifts available now, the gift wall will soon become very bulky and be affected by the About Me Bug.
It is not a good idea to copy and paste the source code from the gift section of the FFS as they use floats to position items. Using floats on ONE item is fine, but using them on multiple items are very complicated and if not closed properly, they would run out of the About Me and over the minifeed section. The easiest way is to use a table and you can easily get 5-6 in a row. Once you get more, you add another row. Don't forget that since this table (for example) has 5 columns, for the next row, you need to have 5 columns too and if you don't have enough roses, you must add blank cells <td>&nbsp;</td> to make up for the missing ones. I have used an alternative image which has a transparent background. Same principle can be followed for Hearts, Tiaras and anything else.
Here is an example of a Rose Wall that you can fill and carry on the next rows:

Code:
<table style="text-align: center; margin: auto;">
<tr>
<td style="text-align: center;"><img src="http://img107.imageshack.us/img107/5510/roselz6.png" alt="" /><br />
<a href="">Name of the Person</a></td>

<td style="text-align: center;"><img src="" alt="" /><br />
<a href=""></a></td>

<td style="text-align: center;"><img src="" alt="" /><br />
<a href=""></a></td>

<td style="text-align: center;"><img src="" alt="" /><br />
<a href=""></a></td>

<td style="text-align: center;"><img src="" alt="" /><br />
<a href=""></a></td>
</tr>
</table>

• Combined Ring & Rose + Picture
Here is an example that you can fill and carry on the next rows. Replace my picture/link with a /t version picture and my name with the name of the giver

<table style="margin: auto; text-align: center;">

<tr>
<td style="vertical-align: bottom;"><a href="https://apps.facebook.com/friendsforsale/users/show/100729935"><img src="http://profile.ak.facebook.com/v229/625/56/t1457104438_6465.jpg" alt="Amir Faryar Zahedi" title="Amir Faryar Zahedi" /></a></td>
<td style="vertical-align: bottom; color: red; font-size: 1.5em; padding-right: 20px;">
<img src="http://67.228.233.11/images/gifts/engagement-ring.png" alt="" height="35" /> x1<br />
<img src="http://67.228.233.11/images/gifts/rose2.png" alt="" height="35" /> x5
</td>

<td style="vertical-align: bottom;"><a href=""><img src="" alt="" title="" /></a></td>
<td style="vertical-align: bottom; color: red; font-size: 1.5em; padding-right: 20px;">
<img src="http://67.228.233.11/images/gifts/engagement-ring.png" alt="" height="35" /> x2<br />
<img src="http://67.228.233.11/images/gifts/rose2.png" alt="" height="35" /> x10
</td>

<td style="vertical-align: bottom;"><a href=""><img src="" alt="" title="" /></a></td>
<td style="vertical-align: bottom; color: red; font-size: 1.5em; padding-right: 20px;">
<img src="http://67.228.233.11/images/gifts/engagement-ring.png" alt="" height="35" /> x3<br />
<img src="http://67.228.233.11/images/gifts/rose2.png" alt="" height="35" /> x20
</td>
</tr>

</table>

Proper XHTML Embedding of Flash for FFS
Faebook replaces the object/embed code with its own JavaScript and ignores some parameters. The code must be in a certain format for the FB script to understand.
Please note that from <object ....... to ... </object> must be on one line.
Example (from YouTube)(Note the bold sections):

<object width="425" height="344"><param name="movie" value="https://www.youtube.com/v/9a72wLT91Xg&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="https://www.youtube.com/v/9a72wLT91Xg&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>

Code to use:

<object type="application/x-shockwave-flash" width="425" height="344"[b] data="[b]https://www.youtube.com/v/9a72wLT91Xg&hl=en&fs=1"><param name="movie" value="https://www.youtube.com/v/9a72wLT91Xg&hl=en&fs=1" /><param name="wmode" value="transparent" /></object>[/code]

Auto-play/Auto-start
YouTube: Add &autoplay=1 to the end of youtube URL
Other sites: You have to check their FAQ
Other flash ie mixpod:
Study the youtube example. If the flash has a embed src="SRC" and flashvars="FLASHVARS" element, you need to append a question mark ? and the flashvar to the end of the embed URL value so it will be SRC?FLASHVARS

Marquee, Blink, JavaScript & <style></style>
These tags are not allowed and will be stripped by Facebook script.

Have fun and enjoy
Back to top Go down
mojako18
mojako18
HCG Member
> : I love HCG!
Posts : 11
Location : desktop
Mood : Happy
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2010-01-08
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://www.friendster.com/hpes18

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeThu Jan 21, 2010 11:44 am

so amazing thankz for help :)
Back to top Go down
rikka :)
rikka :)
HCG Elite
Female

> : complicated .
Posts : 1369
Age : 27
Location : there .
Mood : Gloomy
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2009-02-01
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/rikkahaha

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeMon Jan 25, 2010 12:28 pm

thx for this :)
Back to top Go down
→gine♥'sLain
→gine♥'sLain
HCG Addict
Female

> : 'missed HCG :)
Posts : 474
Age : 31
Location : kung san mapulot ng tadhana :D
Mood : Grumpy
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2009-08-13
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/ginerrel

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeTue Jan 26, 2010 4:48 pm

whew. harder tan i thought Friends For Sale Help Notes 94130
Back to top Go down
ghiaa c:
ghiaa c:
HCG VIP Member
Female

Posts : 15544
Location : C:\Program Files
Mood : Good
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2008-10-16
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue





Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeSat Jan 30, 2010 12:24 am

dali lang nian :)
commonsense lng ang kailangn hahahha XD
Back to top Go down
donald
donald
HCG Addict
Male

> : I proud to be HCG member
Posts : 484
Age : 33
Location : Philippines
Mood : Happy
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2008-10-15
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/29070504

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeThu Feb 04, 2010 10:57 am

thx
Back to top Go down
tiffany_ann2001
tiffany_ann2001
Guest
> : I love HCG!
Posts : 1
Reg-Date : 2010-02-04
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue





Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeSat Feb 13, 2010 10:26 am

the ten million one is not work! Friends For Sale Help Notes 728716
Back to top Go down
ms.TAKEN
ms.TAKEN
Guest
Female

> : labb it :)
Posts : 3
Age : 30
Mood : Blissful
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2010-02-02
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue





Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeSat Feb 20, 2010 9:46 am

Friends For Sale Help Notes 192262 ye :)
Back to top Go down
ghiaa c:
ghiaa c:
HCG VIP Member
Female

Posts : 15544
Location : C:\Program Files
Mood : Good
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2008-10-16
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue





Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeWed Feb 24, 2010 8:19 am

tiffany_ann2001 wrote:
the ten million one is not work! Friends For Sale Help Notes 728716

once lang yan nag wowork . ithink na click mo na yan dati pa XD




yung bonus for 1st time FFS player lang . yung ngayon plang mag lalaro ng FFS
Back to top Go down
neesay_vill
neesay_vill
HCG Geek
Female

> : jump then. fall
Posts : 572
Age : 27
Location : in DAVE'S HEART
Mood : Energetic
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2009-05-15
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/otakuzel

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeSun Feb 28, 2010 9:12 pm

thankz. ghiaa.
Back to top Go down
→gine♥'sLain
→gine♥'sLain
HCG Addict
Female

> : 'missed HCG :)
Posts : 474
Age : 31
Location : kung san mapulot ng tadhana :D
Mood : Grumpy
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2009-08-13
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/ginerrel

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeTue Mar 09, 2010 4:56 pm

hahah. tama. common size cx
Back to top Go down
anjio
anjio
Guest
Male

> : I love HCG!
Posts : 4
Age : 35
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2010-03-19
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/user.php

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeFri Mar 19, 2010 12:55 am

https://apps.facebook.com/friendsforsale/?s=sidenav BUY ME NAMN Friends For Sale Help Notes 31846
Back to top Go down
michay_1824
michay_1824
HCG Elite
Female

> : Taken by the BEST &#9829;
Posts : 1031
Age : 33
Location : sa puso mo!
Mood : Content
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2009-05-05
Forum Warning : Friends For Sale Help Notes 110
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/ihatelosing

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeSat Apr 03, 2010 9:12 pm

thanks for the info. :D
Back to top Go down
kaira0493
kaira0493
HCG Elite
Female

> : LOVEdrunk.
Posts : 1429
Age : 30
Location : @ home.
Mood : Gloomy
Country : Friends For Sale Help Notes Philippines-1
Reg-Date : 2009-04-15
Forum Warning : Friends For Sale Help Notes 010
Contribution :
Friends For Sale Help Notes Left_bar_bleue0 / 1000 / 100Friends For Sale Help Notes Right_bar_bleue



http://profiles.friendster.com/kairamishuto

Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitimeThu Apr 15, 2010 4:08 pm

thanks for this.
Back to top Go down

Sponsored content





Friends For Sale Help Notes Vide
PostSubject: Re: Friends For Sale Help Notes Friends For Sale Help Notes I_icon_minitime

Back to top Go down

Friends For Sale Help Notes

View previous topic View next topic Back to top
Page 1 of 1
                         Posting Regulations                         

Permissions in this forum: You cannot reply to topics in this forum
:: Hide Codes Galore :: :: Social Networking :: Facebook -
Free forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com