Adding extra images to "Friends for sale" Facebook.?

J

Joshua

Guest
Hi, does anyone know how i can put an extra picture in the "About me" section on my friends for sale profile on facebook? i have seen lots of people with gifs etc, and i tried copy and paste, even tried url, but wont show anything other than the text.
Please help :)
 
How To

you need the url of the picture (you can find it by right clicking on the picture and selecting "copy image location")

<img src="http://www.ihav.net/vb/marketplace/URL GOES HERE">

and yes, you need the quotations. Hope this Helps! My FFS page is
Here
 
There is also a Free site.... Photobucket... that you
can upload your pictures to... and it gives you the
code for the pictures. It is nice also because it lets
you edit the pictures ... cropping , adding text and
other features you can do to edit your picture. :D
You also have the feature of making your account private
or public.

Hope this helps. This site helped me lots!!
 
how can i put graphic on my friend for sale..!!help me...
 
question

how can i put backgroung in my ffs page and music? can you please help me
 
To put a background, use css. In short, your about me should look like this:
<span style="STYLE_RULES_GO_HERE">
CONTENT GOES HERE
</span>
Where the style rules are, you can put a background image with this:
background-image: url(DIRECT_LINK_TO_THE_IMAGE);
background-repeat: no-repeat; // for non-repeatable background
background-repeat: repeat-x; // for horizontally repeating bg
background-repeat: repeat-y; // for vertically repeating bg
background-color: black; // for plain black background color

For audio you should use youtube videos, search for embedding options on the youtube video page. A trick if you want to hide the video itself, enclose the whole video with the "span" tags, and set a style rule: height: 0px; to hide it ;) If "span" doesn't work, try "div" or "p".

For a pure image, use: <img src="DIRECT_LINK_TO_THE_IMAGE">. Enjoy!

If you have any other questions:

http://apps.facebook.com/friendsforsale/users/show/94946195 ;)
 
Back
Top