myspace 2.0 div layout (div overlay)
myspace 2.0 Div Layout (div overlay) tutorial
The term div overlay was adopted due to very early versions of this type of layout, being a literal overlay (it sat over the existing page content and covered it).
None of my div layouts examples are really overlays. Instead I remove the existing content that I do not want to show.
I then place what I want to show, on top of my div, or directly under it.
To get clean positioning, and allow the bottom links to move down naturally as my div grew; I would close off three layers of existing tables before creating my div.
This placed my div outside of most of the existing table structure, while causing a large portion of the default page content to fall logically inside my div, making it very easy to position this content in the correct location on my div.
Now that myspace is filtering out code, that closes structures without first opening them, this strategy no longer works.
Rather then come up with a new strategy for myspace 1.0, instead I am recommending that people just upgrade to myspace 2.0.
Below is my preliminary write up for a strategy that works very well with 2.0.
I don't have time to get this article all nicely formatted right now, so I will just publish the steps, I used, as I built my prototype.
===================Start Instructions for Div Layout/Div Overlay in Myspace 2.0 ====
Installing a Div Overlay in 2.0
This is MUCH easier then it was with Version 1, and requires much less code.
Select "Customize Profile" from the Profile menu
Select "Change Layout"
Select the layout, that looks like this:

Next select
"Modules"
Hide all modules that you do not want to show on your div overlay.
do NOT hide your blurbs, we are going to use this for our content, we will hide the blurb headers, in a later step.
In my example I hid all of the sections except the
blurbs
comments
music player
friends
Notice that the top area (where your profile image, contact links, online, mood, status, headline reside) can not be hidden using the "Modules" function.
However, we can hide all of it, or elements within it using CSS.
[note: You may opt to not show some personal information such as age, last login. If you choose this the word "private" will show next to the header for that content. We will hide this later.]
Now drag the blurbs to the top (if they are not already there), placing them just below the top area.
Although the core of our content will go into the blurbs, we will use a higher level element for our positioning.
I will use div.contentMid2. This is the inner most div, which includes all of the content, I want to use, within my div overlay, including the top area, which they now call the "Basic Information Module".
To get an idea of where this div lays, in relation to the other elements, go here:
Page showing div layers, classes, ids of myspace 2.0
It is the thick silver solid border, notice it includes the area with the thick purple border (the top profile info area) AND the thick hot pink dashed bordered area, which contains the rest of the profile content.
This also allows me to use div.contentMid and div.contentMid1, to create interesting background looks, such as framing.
Hidding additional Elements:
We will do this in the css section.
To get to the css section select {} CSS
An edit box will show up, that you can enter CSS in.
Enter only the lines, for the stuff you want to hide.
I HIGHLY recommend including the comment, I provide, with each line. This will make it much easier for you to alter your code later.
Before placing the below code into your css area, please add this:
{! Hiding elements to prepare for Div Layout, code By Eileen !}
{! for terms of use please see xiii.us/tou !}
{! http://xiii.us/tou !}
{! views-under-construction.blogspot.com !}
{! http://xiii.us/ !}
.i {display:none;}
If you use the above code block, none of my credits will show up on your visible myspace page. However, I do require that my credits stay with my code.
To hide the People you may Know (which recently showed up, sometime in March)
{! hide people you may know !}
div#module-1 {display:none;}
To hide the ENTIRE top section use this:
{! Hide Basic Information Module !}
div.basicInfoModule {display:none;}
OR
{! Hide EVERYTHING in the Basic Info Module EXCEPT the profile Image !}
div.basicInfoDetails {display:none;}
Now you can still hide the profile image like this:
{! hide profile image !}
div.photo {display:none}
You may instead choose to hide individual components within this space.
{! Hide Name !}
div.basicInfoDetails h2 {display:none;}
{! Hide contact Links !}
ul.contactLinks {display:none;}
{! Hide url !}
span.urlLink {display:none;}
{! hide headline OR mood and status !}
div.basicInfoModule blockquote p {display:none;}
{! hide status !}
span.status {display:none;}
{! hide mood !}
span.mood {display:none; }
{! hide the View My: photos Videos !}
div.pageLinks {display:none;}
{! hide only the words "View My:" !}
div.pageLinks em {display:none;}
{! hide pictures link; also hides Video link if Blogs are Hidden !}
div.pageLinks li.odd {display:none;}
{! hide only the blogs link IF blogs are hidden!}
div.pageLinks li.even {display:none;}
{! hide only videos link !}
div.pageLinks li.last {display:none;}
To hide the entire section, that contains the age, gender, location, last login, online icon, use the following
{! hide age, gender, location, last login, online !}
ul.profileUserInfo {display:none;}
The above hides the title to the information as well.
IF you do not want this information viewable, with style turned off, you can hide some of these elements using the edit profile tool. However, this tool only hides the information, it does leave text on your profile, indicating the information is private.
To hide only specific elements within this section:
{! hide Age AND Gender AND the slash between them !}
li.tags {display:none;}
{! hide Age !}
span.age {display:none;}
{! hide gender !}
span.gender {display:none;}
{! hide location !}
li#adr {display:none;}
{! hide last login !}
li.lastlogin {display:none;}
{! hide online icon !}
ul.profileUserInfo li img.ImgOnlineNow {display:none;}
{! hide those images, that show up under the contact links !}
ul.profileUserAlbum {display:none;}
-------------------------
Because I want to import the top area content, into my div overlay, I am instead going to assign it position absolute.
I will add in the actual position values later.
{! default image !}
div.photo {background-color:transparent; position:absolute}
{! display name !}
div.basicInfoDetails h2 {position:absolute;}
ul.contactLinks {position:absolute;}
span.urlLink {position:absolute;}
{! status !}
span.status {position:absolute;}
{! mood !}
span.mood {position:absolute; }
{! View My: photos Videos !}
div.pageLinks {position:absolute;}
{! hide only the words "View My:" !}
div.pageLinks em {display:none;}
---------------------
Now we will hide the header text in the blurbs section, so we can use that section for our custom content.
{! hide blurbs header !}
div.blurbsModule h3 {display:none;}
{! hide about me header !}
div.blurbAboutMe h4 {display:none;}
{! hide entire meet section !}
div.blurbLikeToMeet {display:none;}
OR choose to use this section and hide only the header
{! hide Meet Header !}
div.blurbLikeToMeet h4 {display:none;}
--------------------
Unless you choose to hide, the entire top area, you likely have a lot of extra space above your blurbs. This is caused by a combination of padding and min-height settings, used for the elements we removed content from, without actually removing the whole element.
--------------------
The next block of code, removes this extra space, placing the blurbs directly under the top menu, and in the very top left corner of div.contentMid2.
There are ways to do something very similar, that use far less code.
One could use a negative top margin OR position:relative, to accomplish very close to the same positioning. But there are likely to be alignment issues, across different browsers and resolutions.
IF your div is a static known size, you could use position:absolute, to place the blurbs exactly into the top corner of the div.contentMid2.
In this case, you would assign a known height to div.contentMid2, so that when the blurbs are positioning absolute, the bottom links do not move up.
However,
I am going to avoid using position absolute for either the blurbs OR div.contentMid2.
I want to allow the bottom links, to naturally move down, based on the size of the content inside our div.
I also want to place the comments at the bottom, and without using a scroll box for them.
I want my bottom links to move down.
For this reason, I can NOT assign a set height to my div.contentMid2.
So I am going to use a block of code, that serves to reverse the style, that is causing this extra space.
{! myspace 2.0 div layout preparation code by Eileen xiii.us/tou !}
{! remove extra space caused by padding, margins, min-height settings !}
div.basicInfoDetails {min-height:0px; padding:0px;}
div.profileDemographics {min-height:0px; padding:0px; height:0px; width:0px;}
div.basicInfoModule {margin:0px; height:0px; padding:0px; min-height:0px; }
div.basicInfoModule div.moduleBody {height:0px; min-height:0px; margin-top:0px; margin:0px; padding:0px; }
div.contentMid2 {padding:0px;}
{! override default padding in blurbs module !}
div.blurbsModule {margin:0px; padding:0px}
div.blurbsModule div.moduleBody, div.blurbsModule div.moduleMid{padding:0px;}
----------------------------------------------------
Now I need to assign a position statement, to div.contentMid2. The purpose of this statement is to cause this div, to act as the reference point, for the page elements, I want to import into my div.
Because these elements, reside logically inside div.contentMid2, they can be positioned, measuring from the top left corner of this div.
I find this more accurate, cross platform, then trying to position from the top center of the body.
{! myspace 2.0 div layout preparation code by Eileen xiii.us/tou !}
{!!! Cause any absolute positioning, to position relative to div.contentMid2 !!!}
div.contentMid2 {position:relative;}
Now the top left corner of our custom div area, and the top left corner of div.contentMid2, are in exactly the same position.
(I put a magenta border around my core div, so that I can see exactly where its boundaries are. I usually leave this there until I am done building the div. It helps with trouble shooting if things do not place correctly.)
---------------------------------------------
NOTE: IF your content area (core div) is wider then 800px, you will need to add code to accomodate this. The myspace default sizing needs to be overridden at multiple levels.
I am using a width of 920px
{! set width of my core div, and surrounding divs !}
div.wrap, div#row1, div.contentMid2, div.contentMid, div.contentMid1, div.myCoreDiv {width:920px;}
NOTE: IF you want to keep the top area (ad/search/menu) a width that is less wide then your core div, you will need additional code to accomodate this. Because of the padding the myspace has applied to the google search area, notice I have set it to width LESS then the width I am using for the top area. I could have removed the padding instead, but this looked slightly better.
{! control width of top area, when making the rest of the page wider !}
div.globalWidth, div#leaderboard {width:800px; max-width:800px; }
div#googlebar {width:770px}
----------
At this point, any default page content, that you want to import into your custom div, should be on your visible page, below your blurbs.
[Although your blurbs are hidden, they should be just under the top menu.]
The one exception to this, is any content from the top section (BasicInfo/ProfileInfo area).
If you assigned position:absolute to these elements, they will be sitting, overlapping the top of your blurbs.
Otherwise, they will be above your blurbs.
-----------------------------------------------
NEXT we start building our custom div in our blurbs section.
Go to
Profile -> Edit Profile
Click on "About Me"
In the About Me box start your div
<a class=i href="http://xiii.us/v/">myspace 2.0 Div overlay code/tutorial by Eileen</a>
<div class="myCoreDiv">
put your div content here
</div>
----
Now save
(I put a magenta border around my core div, so that I can see exactly where its boundaries are. I usually leave this there until I am done building the div. It helps with trouble shooting if things do not place correctly.)
You can put the border, around your div, by adding this to the css section:
div.myCoreDiv {border:2px magenta groove}
----
The first kind of div I am going to do is a very simple "Core Image" type div.
For this I use a core image, that I draw using a draw tool (I use paintshop).
I am using the image found here:
http://i287.photobucket.com/albums/ll142/mpskin/0layouts/madeline/madeline-house-front.png
This is what I will call my core image.
I will place the image in my core div.
I now have this code in my about me section:
<div class="myCoreDiv">
<img src="http://i287.photobucket.com/albums/ll142/mpskin/0layouts/madeline/madeline-house-front.png">
</div>
------
Now we need some style for our div. I am going to add a border, you do not have to do this.
I am also going to add a text-align command, to cause my core image to center.
Code I now place in the css area:
div.myCoreDiv {border:3px magenta groove; text-align:center;}
---
Anything you did not hide, from the top area, will now show ON TOP OF your core image. We will place it in its desired location later.
Anything else you did not hide, will show BELOW your core image. We will move these elements onto our div as well.
I have left spaces, on my core image, to place my content.
Now we are going to import the content we want to show, onto the div.
First the Name.
The name is adressed like this:
div.basicInfoDetails h2
I am going to add a top value, and a left value, width, and text-align.
I want the name to center in the top left section of the top left window, on my image.
To insure this, I am going to set the width of the name, to the length of that window section.
width:200px;
I will then add text-align so that the name centers within this space
text-align:center;
Then I will position the element, in the top left corner of the window, measuring from the top left corner of my core div.
top:137px; left:68px;
I end up with this:
div.basicInfoDetails h2 {width:200px; text-align:center; position:absolute; top:137px; left:68px;}
------
Now for the photo
I want the photo to center under the name, so I will use the same concept.
I will size the element that holds the photo, div.photo, the length of the window section, and use text align to cause the photo to center in that space.
div.photo {width:200px; text-align:center; position:absolute; top:160px; left:68px;}
----
Next I will place my contact links.
This will position the contact links:
ul.contactLinks {float:none; position:absolute; top:150px; left:290px; width:150px; height:90px;}
It is important to set the width, as the default width is actually much wider then the links themselves takes up.
I used the above size, because I am about to add a custom contact table, which uses the above size.
To do this, I also need to space my links, within this space.
To get a custom contact table you can go here:
custom contact tables myspace 2.0
This will also allow you to enter a custom image, to use for your contact table.
Make sure you check this
- I have used position absolute to position my contact table
---
Next I will place the pictures and video links (and possibly the blogs link)
div.pageLinks {position:absolute; top:264px; left:290px; width:150px; background-color:mistyrose; color:purple; font-family:comic sans ms; font-size:13px;}
{! position picture link !}
div.pageLinks li.odd {float:left; padding-left:13px;}
{! position video link which may also be odd depending on blogs link !}
div.pageLinks li.last {float:right; padding-right:13px;}
This should be enough for you to get the idea of how to do this, I may add more information later, if I have time, and people want me to
I will probably clean this up when I have more time, so it is easier to read.
60 Comments:
Thank you so very much, you are really something!!! Please find some time and give us a more detailed arcticle about div overlay on profile 2.0. Your help is much needed and appreciated!!! Thank you very much!!!
Can we no longer place links where ever we desire as we were able to with the clear gif in profile 1.0?
Do we have to get a contact table now in order to have links ???
Yes, you can still use the clear gif links.
However, since it was so easy to just take the existing link, and move it wherever I wanted, on top of my div, I didn't see as much need for that.
You can create links and then use absolute positioning to place them.
you can put the code for these links inside your about me section.
You can position them measuring from the top left corner of your div.
I'm not quite sure how to do this absolute positioning and the gif links. Can you put a tutorial on this up?
This looks wonderful Eileen... I'm going to try it out next weekend :D
Wow, I just to say how sincerely I mean thank you. :) I sure don't possess your intelligence, and I'm not sure my fuzzy little head could take it haha. Seriously though, thanks a lot Eileen!
thanks you very much! this is the most helpfull tutorial about editing myspace i was able to find till now! thanks for the time
I will try to write up a tutorial for doing clear gif links this weekend.
Or maybe I will finish the code I started to make this an easy more automated process.
YES!!! Please finish the code to make it more detailed and easier for us to work with. Thank you so very, very much!!!
Please help with the gif it will be great helP!!
I used ur codes, then in the custom coding I pretty much took ImageReady html and placed it, the player works fine everything I need works fine. BUUUT. WHen I add text under < td > it does not recognize text breaks < br >(n im not adding the spaces in the code, i just dont no hwo this comment box is gonna read that hahah). Whats going on? Id appriciate the help thanks
Do tables inside divs work anymore? In v.1.0, I used to make a div, and insert a sliced table in it with links. Now when I do the same thing, the tables images don't line up properly.
They should work exactly the same, but I haven't tested this yet.
Is all of your code going through, or does myspace dot any of it out, with dots?
Does myspace change any of your code?
WHATEVER YOU NEED FOR GRAPHICS I WILL CREATE FOR YOU FOR YOUR BLOG FOR A ONE ON ONE IN WORKING WITH THE NEW 2.0! I USED TO BE ABLE TO CREATE MYSPACE PAGES SUCH AS THE ONE HERE myspace.com/cybertrackmarketing NOW I CAN NOT CREATE TABLES IN MY DIVS AS WELL AS OTHER ISSUES! EMAIL ME DIRECTLY AND LET ME KNOW WHAT YOU NEED SO WE CAN WORK TOGETHER! THANKS !!!!
loyaltyenterprise@yahoo.com
I think I followed your directions right, but I have a white border around my div and I can't, for the life of me, figure out where to change it at... can anyone help? http://www.myspace.com/spiritmi
Excellent Stuff. I hate 2.0... but now only a little... haha
I've also got a white border around my div! Is it just something that happens in profile 2.0, or did I do something wrong?
all i have is all black background.....how do i edit and add stuff it now
How can you make rollovers with images
Try this tutorial:
image hover effects
MAN...IM GETTING REAL MAD BRCAUSE ALL I HAVE IS A BLACK BACKGROUNG AND I DNT KNOW IF I DID SOMETHING WRONG PLZ HELP ME.......ALL IS A BLACK BACKGROUND WITH ME PICS ON IT(HEARS SOMETHING LIKE HOW I WANT MY PAGE TO LOOK.....MYSPACE.COM/chocolovagurl....plz go to her myspace and tell me how to do that...SHE WONT TELL ME lol THATS MY FRIEND.....PLZ PLZ PRETTY PLZ
im trying to get my background to show up,
ill try and do some graphics for ya if you can figure it out for me.
hit me up on myspace
http://www.myspace.com/forgetcolor
How do you change the background color behind the content you put in the about me section to say, black? And is it possible to change the background color to the left and right of the adds/search bar?
I used to "Hide the entire top section" - it would hide it to me- however if someone that wasn't a 'friend' were to look- the top section would still show! Any ideas?
HI thank you so much for your awesome information. I am trying to do a simple div overlay and there is a white border just on the outside of the core div. I am assuming it is some sort of padding. How do I get rid of that? I want my overlay to be flush with the myspace top section. Thank you!!!
Is There Anyway To Do Scroll Boxes Also? I've Tried But It Just Shows Up At The Very Bottom As Regular Text, Anyway To Fix This, If You Can Please Help, Thanks
I have a myspace page that I am doing but can't seem to get the div to be in the site other than the div you created to place the background on the page... please help....(http://www.myspace.com/479402393)
how can i go back to 1.0
Hmmm. I've finally taken the time to go over this and I find it amazing how we both came up with such similar ways to do such different things. I never think to allow for expandable content or imported content into my div layouts anymore. While I've definitely grown fond of my single image div setups its obvious these designs of yours are more "standard myspace user" user friendly.
Shame there's not an easier way to explain div layouts, but that's just the learning curve I guess.
Kudos, keep up the good work Eileen.
-Levi
Hi my name is Kate and I came across you page which found to be intresting...
I would like to share my current page with you in asking a qustion being I was planing to go to 2.0
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=442670339
What I am planing to do is make it ware friens are displayed with comment in a box below for diffreance is it going to be possible to creat it as is now you think?
I guess maybe the 2.0 is new for me but blows my mind in a way
Have a great Day! (smiles)
is there a way to put the music player inside the blurb div?
what is the div to hide the top half of ur myspace 2.0
Is it possible to put image mapping inside the core div? I tried but failed, and got the ...... look :( plz advise!
I wanted to thank you for your work! I tried to go it alone, (I forgot this tutorial was here- I saw it way back when none of it made sense to me, LOL) and thought I was doin' "real good"- and then got stuck with cross-platform alignment problems. I used your contentMid2 code (with credits, of course) and I'm hoping it solved the problem. (I'm awaiting an answer from my friend on her Mac.) Anyway, thank you for this and for all your other good stuff!
Someone mentioned this a few posts back, but apparently it's still an issue:
Myspace 2.0 doesnt like tables. I'm trying to float a table(containing slices) using a div. myspace automatically deletes sections of the table html code when i hit publish - which causes the table slices to display all out of whack. it's deleting the table's width and height values and the individual slices height values as well.
I understand that 2.0 is probably easier for users who don't like to code, but for designers it seems to be a step back.
Anyone know anyway to get around this yet?
-Jim
Are they deleting inline style again (they were for a while, and then they were not).
I find 2.0 better, and I do like to code.
What I think you need to do is to separate your style from your html.
Remove all inline style (even the stuff that uses the older syntax, of not using a style command, but puts the attributes directly inside the tag).
Then put all style in the css area.
See if that works.
Or are they actually removing table tags?
I haven't tested tables for a while, but the last time I did, 2.0 had no problem accepting them.
Follow-up:
Yes. The "position relative to div.contentMid2" code made everything come together hunky-dory!
Thank you again!
could I use a image map in a div? For example, Say if I wanted to add more then one link to the the madeline-house-front.png background. Do I just have to use clear gifs?
I haven't tested image maps in 2.0, they had issues in 1.0 due to the pound sign.
However, 2.0 doesn't block the pound sign, so they may work.
Why don't you try one, and see if it works, and then let me know?
hey, i want to move the blogs section and position it wherever i want, just like I could with 1.0
is that possible? if so please help me out
So here is my big problem all works great until I choose to embed something (think a youtube video or myspace video). Things look fine in firefox but, when I attempt to view the page using safari on Mac the embed items stretch across the entire div and offset everything. The example is my profile here http://www.myspace.com/485702001 . Any ideas?
This is fantastic! Great work! One question. How do you hide the myspace blue area that includes the ad and search information etc?
I can not, in good conscience, tell you how to hide the ad area.
The annoying ad is the only reason myspace is free. The google search is part of the google ad package.
is there anyway to move the blog section anywhere i want? or is this only possible in 1.0?
thanks!
Just drag it where you want it, using the built in profile editor, provided by myspace.
One could go to the trouble of using style code to place everything, but it is sooooo much easier to just use the built in tool for module placement.
There is a white border just around the core div. How can I remove it? It the only thing that I can't quite figure out. Great tut though. It should be nice when its done.
Thanks.
-M
i think i love you.
thanks for this article.
I'm new to CSS, but I did everything you listed. I just need to know how to plug stuff in for example my page is just blank with the magenta margin and it says 'your content here' well how do I get my pic to show and stuff like that...from my basic info module, the background layout you had, etc. I'm confused! LOL
Is there a way to position the pagelinks (photos videos blogs) in the same kind of way you have set up the customized table for the contact links. being able to position the link, assign a background image and determine the size of the link area. I'm also not fully understanding how the odd/even/last relationship works with the pagelinks. Please help.
Brazil
How can i put the Myspace 2.0 links table on my div class="myCoreDiv" background and use position:absolute to place it where I want on myCoreDiv?
I tryed many codes but I can not see the table anywhere.
In new to 2.0 and im running on the walls of it, just when you think you got things figgerd out, it all changes lol.
No but seriously, how can i put my blog , friends and comments in my overlay ?
For example i make a layout with photoshop and i put a place there for my blog, comments and friends, how to put those in there ?
I know how to code and everything, but I just can't get the scrolling boxes. I tried limiting the height and putting the overflow to auto, and then trying scroll. Nothing I did seemed to work.
Is there a way to fix this?
Eileen,
Once again, your tutorials have been a godsent in explaining the wonders of profile creation, however I heavily rely on tables for my designs. I spent all week designing, tweaking, and coding a div overlay and ran it on my test site, only to encounter the issues of myspace 2.0. My tables are all jacked up out of alignment, mostly vertical alignment, which doesnt make sense.
Also, How could I go about placing a blog feed within the div design?
I wish I could just revert back to 1.0, but progress must be made, I suppose.
Thank you.
Here's where I'm at: http://www.myspace.com/507262259
Here's what I want to be at: http://www.myspace.com/roshkochdidd
Thanks man, it really helped. Bombating
Could i design a div same as i would design a div in 1.0?
Hi Eileen I just wanted to say that your amazing! You've taught me so much it's unbelievable and all because you like to help people. I've gone from not understanding what the hell anything means to being pretty confident in coding thanks to you. All the best in the future!
i made this layout....
http://www.myspace.com/tbipresents
for some reason, it shows up on my computer, and one other. like all other computers, it shows up all messed up...blows my mind. anyone know whats up? this new 2.0 stuff sucks...
hey guys, i made this profile...it's in 2.0. it shows up perfectly fine on my mac computer on firefox. but doesnt show up on safari.
if i look at the myspace on another computer or laptop, it doesnt load right either....but still on my mac and firefox combination...it loads and looks perfect.
this doesnt make sense to me, i just tried moving all the divs into a z index of like 10 and 11...to make sure it'd be on top. still shows up on firefox, but not safari.
i've checked the layout on a friends laptop on chrome, safari, and firefox...and it doesnt load right on any of them.....i did the coding right i believe. someone please let me know whats up
the website is: http://www.myspace.com/tbipresents
so everything looks perfect except...
the general, books, movies etc. section is still below the overlay thing, how do i place it on the overlay instead of under it?
hello =) first, i want 2 thank u 4 providing this awesome tutorial. i've designed a band page using ur codes (with credit 2 u) and it turned out WONDERFUL! now i'm trying 2 master this 2.0 thing. everything was coming along nicely until i tried 2 put the temporary grid on my page so that i can make clear gifs 4 the links i want in my core div. it keeps showing up under my blurbs section. also, is there a way i can put a scroll box in my core div (blurbs section)? only the text shows up when i try, which also appears under my blurbs section. my page will b complete if i can figure those two things out. can u PLZ help?? :-(
Post a Comment
Due to Excessive Spam, I have turned on comment moderation.
Links to this post:
Create a Link
<< Home