Ferodynamics.com
by PJ Brunet
>
9
myspace symbol codes
myspace display name symbols
i know my girlfriends facebook password
ferodynamics hearts
>
myspace display name symbols
view my profile as others see it facebook
myspace display name
myspace display name
myspace display name symbols
write different on myspace
write different on myspace
myspace writing
myspace writing
peace sign on facebook
view myspace private profile
myspace display name codes
7
myspace display name codes
myspace writing
add commentview picturesmessage myspace
symbols for myspace
symbols for myspace
symbols for myspace
one column
view hidden friends
myspace display name symbols snowflake
how to see who viewed your facebook
how do you write on the side of pictures
codes for display name for myspace
myspace display name symbols
myspace display name symbols
message me add me codes
myspace symbol codes
>
myspace display name on profile
column myspace
display names for myspace
remove all borders on myspace profile
code to make one column myspace page
myspace display name symbols
myspace display name symbols
remove interest words
how do you get a facebook peace sign
how to hack a truthbox
one column myspace codes
myspace display name symbols
how do you get a facebook peace sign
one column myspace profile code
one column myspace profile code
5
myspace display names
myspace display names
view hidden friends myspace code
view hidden friends myspace code
how to find out who has viewed you on facebook
myspace display name symbols
how to find out who has viewed you on facebook
myspace display names
myspace display name codes
myspace writing
myspace one column
make your profile small
make your profile small
myspace writing
myspace writing
myspace writing
myspace writing
myspace smiley face sign
myspace smiley face sign
wwwmyspacecodessymbolscom
wwwmyspacecodessymbolscom
wwwmyspacecodessymbolscom
who is looking at my myspace
wwwmyspacecodessymbolscom
wwwmyspacecodessymbolscom
>
one column layout code
myspace star symbols code
recover old inbox facebook messages
symbolsmyspace
view facebook profiles private photos
peace sign alt
make my myspace smaller
3
one column  code
one column  code
one column  code
one column  code
one column  code
one column  code
how can i look at other peoples myspace inbox
one column layout
how do u change the color of u words and make them bigger on myspace
show top friends and hide my top friends
myspace display name symbols
myspace display names
how do you make a peace symbol on the computer
how can i look at other peoples myspace inbox
>
one column  code
one column  code
one column  code
how to make myspace text small and centered
myspace dropping letters
make profile one column
make profile one column
myspace display name symbol generator
how to look at a private myspace profile
display name characters
myspace display names
myspace display name codes
one column  code
how do i make my myspace profile one column
myspace symbol codes
how do i make my myspace profile one column
one column layouts for boys
how to make different color screen name
1
myspace display names
code for looking at private myspace profiles
one box myspace layouts
display name code
change font size in display name on myspace
make profile one column
myspace messagecommentadd buttons
make profile one column
myspace one sided layouts
myspace display names
myspace display names
myspace display names
how can i see who viewed my myspace page
myspace writing
how can i see who viewed my myspace page
myspace messagecommentadd buttons
hide status on profile border
myspace name fonts
facebook find out who looks at your profile
see who viewed your facebook profile
>
hide status box on myspace
myspace display name symbols
one colum layouts
comment and message buttons for myspace
myspace contact buttons pics comment add and message
add and message myspace buttons
myspace contact buttons pics comment add and message
how can i see someones facebook
how do i hide myspace url without leaving a big gap
myspace comment and message links
how do i check profile views on myspace
myspace symbols for display names
comment and message buttons
comment and message buttons
make my profile one column

Ferodynamics.com examines popular social networks like Myspace and Facebook.

Add me on Myspace.


Check out Callistea.


Write Left or Right of Pictures

This should answer the following questions:

"How do I write next to a picture?"
"How do I write beside my picture?"
"How do I write to the left of a picture?"
"How do I write to the right of a picture?"
etc.

Here's the code to write to the left of a picture:

<div style="width:200px;border:1px gray dotted;">
<div style="float:left;text-align:left;width:80px;padding:10px;">
Write about your picture here.
</div>
<img src="http://sitdownsellup.com/pj/red-x.png" style="width:100px;height:200px;" />
</div>

Looks like:

Write about your picture here.

And here's the code to write to the right of a picture:

<div style="width:200px;border:1px gray dotted;">
<div style="float:right;text-align:left;width:80px;padding:10px;">
Write about your picture here.
</div>
<img src="http://sitdownsellup.com/pj/red-x.png" style="width:100px;height:200px;" />
</div>

Looks like:

Write about your picture here.

Now let's break it apart line by line:

<div style="width:200px;border:1px gray dotted;">

This is the outside box around your picture and your text. If you want it thinner or wider you change the width. 200px is 200 pixels. If you don't want the border you can remove it, like this:

<div style="width:200px;">

I just put the border there so you can see that you need this "outside" box to put your picture and text in. Now, realize your picture and text needs to fit inside this big box, so if your picture is 100 pixels wide and you plan to have 100 pixels of text, that's 200 pixels total. You need to do some basic math to figure this out.

So now you're thinking, what if my picture is really big and it won't fit in my "About Me" section, or wherever you're trying to put it. No problem, you can change the size of your picture, I'll explain that.

Next:

<div style="float:right;text-align:left;width:80px;padding:10px;">
Write about your picture here.
</div>

This is the box that holds your text. If it "floats" to the right your writing goes on the right. If it floats to the left your writing goes to the left of the picture. Simple, right? Text-align is how the text is "justified" inside your text box. If you're bored, change it to "right" and you'll see that the words are pulled to the right of your text box, which might look cool depending on what you're trying to say.

The "width:80px;" is the tricky part. Pay attention to this. Our outer box is 200px, right? And our picture is 100px, so that leaves 100px for our text, right? Well, yes, but it doesn't look so good when your text is pushed right up against your picture. It needs a little room to breathe. So we make it 80px, and add "padding". Padding:10px; adds space all the way around the inside of your text box. That's 10px to the left of the text, 80px for the picture, and 10px to the right of the text, that's 100px total! It's basic math, got it?

If you want to be more specific you can actually do this:

padding-left:10px;padding-right:10px;padding-top:10px;padding-bottom:10px;

Which is the same as:

padding:10px;

Or you can do this too:

padding:10px 10px 10px 10px;

The first number is the top, second number is right, then bottom, then left. It goes around clockwise.

Next is your picture:

<img src="http://sitdownsellup.com/pj/red-x.png" style="width:100px;height:200px;" />

Change the numbers to change the size of your picture. To change the picture you just change the URL of the picture, which in this case is: http://sitdownsellup.com/pj/red-x.png

To find the URL of a picture you can usually "right-click" it and click "Copy Image Location" and that will save the URL to your clipboard, then when you are ready to paste the URL into your code you press "Control-V".

If you can't find good picture hosting, follow me on Twitter and I'll see what I can do.



Ana

Write about your picture here.

kayley :)

what if we don't want there to be a box around it?
because I want it in my about me next to where I wrote. I don't want it to describe the picture a box around it,or whatever. Please explain this to where I can understand it-or just give me an easier code...

Hillary

I'm so frustrated! I don't understand the codeeee.
Someone help me.
How to I write BESIDE an image?

BRANDY :D

yeah, it didnt work. :/

Leslie hirt

an easier way to do this code is;
<img src="URL HERE" text align="left">

replace it with right and your writing will be on the right. its alot simpler and easier to remember

jasmine

if im making my own layout how do i add text as in a poem as a background? thanks in advanced :)

Bri

this doesnt work..on mines it goes blank! >:[

PJ

Becki, find the "div" that the text is in and use this style="text-align:right;"

If you don't have a div to work with, make one, but make sure it's big enough, use the "width:" and "height:" styles. A div will shrink to fit whatever you put inside it (unless you make it bigger) so if your div is very small, your text won't move to the right, it will be trapped inside your little div, and your little div will probably be on the left. You could "float" a little div to the right, but that's more complicated to explain.

UGH

thiz thing didnt work for meh!

becki

how do i move just my writing to the right without it being next to a picture?

PJ

Ran, I'm glad it helped!

Ran

This is an amazing article for people like me who are just starting out on blogging. Thank you!

to share HTML code, &lt;big&gt; will look like this: <big>