MySpace Pre Made Layout


>>> 

MySpace Layouts and PreMade MySpace Layouts Your #1 Source for MySpace Layouts , Graphics , and Animations for your profile! Home MySpace Layouts MySpace Animations MySpace Graphics MySpace Generators Contact MySpace Layouts Look through our database of cool stylish MySpace Layoutsavailable for download. The Premade Layouts for MySpaceare Top Quality, and custom made here at MySpaceClipArt! Browse by Category: All 3D Abstract Animals Cartoons Cars Flowers Girly Styled Guy Styled Hearts Singers / Artists TV Shows and Movies Misc. Total MySpace Layouts: (57) Indian Layout Preview Layout Get the MySpace Code for this Layout! Category: Misc Xbox 360 MySpace Layout Preview Layout Get the MySpace Code for this Layout! Category: Misc Funk Abstract MySpace Layout Preview Layout Get the MySpace Code for this Layout! Category: Abstract Sweetness MySpace Layout Preview Layout Get the MySpace Code for this Layout! Category: Abstract Injection Layout Preview Layout Get the MySpace Code for this Layout! Category: Abstract 1 2 3 4 5 6 7 8 9 10 11 12 Next Featured Profile Check out the Designers Profile! Check out our Contact Page to Get your Profile Featured! Photoshop Tutorials Urge Music Service Cinema 4D Tutorials URGE Music Service MySpace Games MySpace Graphics Music Video Codes MySpace Game Codes MySpace Images 2006 MySpaceClipArt.com MySpaceClipart.com is not affiliated or endorsed with MySpace.com. All Trademarks are owned by their respectfull owners. MySpace Layouts - MySpace Graphics - MySpace Animations - MySpace Layouts - MySpace Generators



My Space

.derkilicious | Part 4: MySpace DIV overlay [Color] .derkilicious Blog The Dirt Wordpress Search « links for 2005-12-24 | Home | links for 2005-12-26 » Part 4: MySpace DIV overlay [Color] The following is a much needed update to my MySpace DIV overlay tutorials. Parts 1 - 3 covered the basic DIV overlay to cover the default layout , creating a two column layout [main content & sidebar] , and adding a comment box . Due to the fact that these tutorials are meant as a reassuring push in the right direction [as far as learning basic HTML and CSS], the codes will serve as generic examples. I urge users who yearn for real individuality and style to consult the various online CSS / HTML resources available online. For today’s tutorial we are going to leave the previous content areas as-is. Yes. The theme here is minimal hand holding. Hopefully what you learn from here will inspire you to conduct your own research on your own time. Let’s go ahead and create a new DIV with a width of 529px and a height of 400px. Within this new DIV we’re going to create two additional DIVs and position using float:left and float:right. Here’s how: Add the following HTML to your ‘I’d Like to Meet’ section under your sidebar DIV: <div class=”testcontainer”> <div class=”testcontainerl”> <p>We’re going to float this container to the left</p> </div> <div class=”testcontainerr”> <p>We’re going to float this container to the right</p> </div> </div> Add the following CSS into your ‘About Me’ section: .testcontainer{clear: both; width: 520px; height: 300px; padding: 5px; background-color: 999999;} .testcontainerl{float: left; width: 225px; height: 280px; margin: 2px; padding:3px; background-color: 865433;} .testcontainerr{overflow: scroll; float: right; width: 275px; height: 250px; margin: 2px; padding: 3px; background-color: 888888;} Use the above code as an example for creating your own DIVs. For DIVs which contain large text bodies, add overflow: scroll to the appropriate class. Doing so will force any text or content that expands beyond the DIV borders into a scrollable box. As you can see, adding color to your DIVs is as easy as adding background-color: color code; . For those interesting in adding a background image, use background-image: url(’http://URLofImage.com’); . DIVs with background images require an additional property: background-repeat . Use background-repeat to tell the browser to repeat the the image both horizontally and vertically ( repeat ), repeat horizontally ( repeat-x ), or repeat vertically ( repeat-y ). << Return to Part 3 Tags: myspace , div+overlay , tutorials , css , design , profiles -- Comments 1 tyler says: very nice Derek. glad to see Part 4 up. sorry I couldn’t help out, but this one looks good and is easy to follow, too. Posted December 26, 2005, 1:26 am 2 .derek says: i’m trying to give just enough info to entice users to learn for themselves. hopefully i’m not keeping the tutorial too stark. Posted December 26, 2005, 1:27 am 3 Janta says: thanx for putting up part 4 >. Posted December 26, 2005, 6:56 pm 4 Janta says: um i put up a background pic and all but i cant see my nav bar or my comment box o.o Posted December 26, 2005, 7:48 pm 5 ChozSun says: Thank you so much… you have got me started on the right course. I assume future parts to this article will tell us how to inject myspace content such as friends, details, etc. and how you changed the background color for the entire site. (I have tried adding a .body into the CSS but it doesn’t pick it up). Posted December 26, 2005, 8:01 pm 6 .derek says: chozsun remove the period before ‘body’ and everything should start working as is. ‘body’ is not a css class. it’s an html tag. if you look at the basic structure of a webpage it goes something like this: <html> <head> </head> <body> website content blah blah blah </body> </html> what you’re doing when you add: body{ background:#xxxxxx; } is styling the html body. did that make sense? Posted December 27, 2005, 1:28 am 7 tony montana says: cool mon. tanks! Posted December 27, 2005, 3:13 am 8 blakesta says: sweet tutorial! :D Posted December 27, 2005, 7:44 pm 9 anthony says: I’m trying to just get the same basic look that you are showing through your tutorial but I must be doing something wrong. Can you look at my page and give me a suggestion? I’m not getting color and I’m not getting the “test containers” to float left or right. Thanks for the tutorial though, I look forward to learning how to create a decent looking page. Posted December 28, 2005, 9:22 am 10 Scott says: Great tuturial I’m still having a little trouble getting the text to align properly. If you or anyone else who knows what they are doin could help out in getting a little style, or well anything onto my profile let me know. www.myspace.com/skut AIM: Skut7969 Posted December 28, 2005, 2:06 pm 11 Josh says: Ok, I’ve got an overlay in progress (I’m learning as I go so it’s a process). I had it originally on a test space and when I got it to a point where I felt I could test it on my profile I have a problem. My comments appear below the original div. How do I hide my original comments so they don’t apear below? My myspace is www.myspace.com/jjscantina if you need to take a look. I appologize for the places where the code gets a little messy, knew nothing about html or css before this… Posted December 28, 2005, 2:44 pm 12 ChozSun says: geez I am a dork. I had it right in my own css file for my website… somehow a . popped up when I put it into myspace’s css. Okay… now how do we: 1. fuse myspace items (friends, information, etc.) into the website. Is there something we can call from myspace or do we have to edit that in ourselves 2. how do we change the overall myspace site? do we set the .main to * for width and height? How do you change the myspace area’s colors (like the normal is blue but yours is gray). If this is going to be in future articles I can wait. Posted December 28, 2005, 4:04 pm 13 .derek says: anthony: first of all, your page does not have a white background because you have background-color:”FFFFFF”; you do not wrap color codes with quotes. remove those and you should be fine. also check your floats. for example, your testcontainer class has no float property. scott: you probably want to link your actual test profile [i’m assuming?] because the link you posted goes to a standard profile. josh: read through parts 2 and 3 of the series as i have posted the neccessary code and explanation for the comments sticking out at the bottom. Posted December 28, 2005, 6:58 pm 14 Tyler says: @ChozSun “Myspace Area’s Colors” question: I don’t know if Derek has answered this question for you, but reference this post in Part 3: Color Answer and put this code in the “About me” section anywhere between the style tags. If this doesn’t answer your color question, just post more questions. Posted December 28, 2005, 9:56 pm 15 Tyler says: @ChozSun “Myspace Items” question: If you are talking about finding the links so that you can have buttons that link to your pictures, all of your friends, all of your comments, etc. - simply copy the actual myspace links on your original page and use those for your links on your div overlay page. If you can’t find those links (for instance, if your page already covers them up), then just go to someone else’s page, copy the url for whatever links you want, and then use your unique Friend id (which you can find here by reading Derek’s explanation) and instead of that person’s Friend id. Long explanation, simple process. Posted December 28, 2005, 10:02 pm 16 jikka says: im confused `=\ Posted December 29, 2005, 1:16 am 17 Dash-2 says: derck, next I think they want something like a “top 16 friends”… It’s really simple, like Tyler said “Long explanation, simple process.” http://myspace.com/dash2 Posted December 29, 2005, 4:53 am 18 ChozSun says: Not the just the links. I am using Derek’s way of coding to essentially cover the original page. However, I would like to have Friends, Interests, Details and Networking appear on my new page. Is there a way for my new page to call that information so it appears or do I have to do all that by hand? Posted December 29, 2005, 6:08 am 19 FRANKEEE says: HOW COME MY TEST CONTAINER THINGS DONT FLOAT!? TEST PROFILE KTHNX [sorry about the caps lock situation] Posted December 30, 2005, 3:03 pm 20 FRANKEEE says: test profile: www.myspace.com/33260996 +yeah… thanks for working on this on christmas day Posted December 30, 2005, 3:04 pm 21 debussie says: I’m trying to got my interest…about me …and all that other crap to disappear of the bottom of my page but i doesn’t seem to want to….any clue what to do? Posted December 30, 2005, 10:01 pm 22 TylerJ says: I am having a very hard time with Part 4: MySpace DIV overlay [Color]. I dont know what I am doing wrong. I need help. Posted December 31, 2005, 12:02 am 23 rico says: the color in the news div background wont show … and for some reason the overflow wont scroll either.. any help? http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=46034728 Posted December 31, 2005, 12:02 am 24 rico says: nevermind figured it all out… i missed a ; ……. Posted December 31, 2005, 1:00 am 25 tyler says: @debussie I’m trying to got my interest…about me …and all that other crap to disappear of the bottom of my page but i doesn’t seem to want to….any clue what to do? Do you have a link? @TylerJ I am having a very hard time with Part 4: MySpace DIV overlay [Color]. I dont know what I am doing wrong. I need help. What exactly is the problem? Posted December 31, 2005, 7:27 pm 26 Jake says: right now im using only a test myspace (the one linked to my name) for practice and fine-tuning of what i want to go for my real myspace. im having a hard time getting the floaters working and Ive tried everything with them. Ive taken them out, put them back in, repeated, messed with the px size eeeh everything, but i cant seem to get them to show up right. first what do you mean by “Add the following HTML to your ‘I’d Like to Meet’ section under your sidebar DIV” because i cant seem to find the right place and how come they dont show up? do you have an example of what the whole page should look like after? thatd help a bunch.. sorry to be such a dick.. Posted January 1, 2006, 2:39 am 27 .derek says: jake you might be interested in the following floats tutorial . Posted January 1, 2006, 2:45 am 28 Jake says: thanks a lot derek! Posted January 1, 2006, 10:19 am 29 STEFANY says: THIS IS HARD TO UNDERSTTAND BU THAN YHU Posted January 1, 2006, 12:37 pm 30 syduCck says: I’ve done this entire tutorial && so far, so good. but, one thing, my sidebar div is lowered underneath my main div && i wanted to know how i could put them side by side. && i also want to know how to add another div. Posted January 1, 2006, 4:55 pm 31 syduCck says: there’s a problem w/ the scrollbar. it won’t let others view their comments && when i try to fixx it .. everything underneath the scrollbar code becomes a link. help? Posted January 1, 2006, 9:17 pm 32 Jess says: hey hey. great stuff.. but is my friends box supposed to be there? did i miss something or do i need to do something extra to get rid of it? Posted January 2, 2006, 1:44 pm 33 Jess says: no matter :]] sorted. Posted January 2, 2006, 2:29 pm 34 Jess says: me again. i want my profile shorter. but if i make it smaller, it uncovers the profile underneath? help, please? Posted January 2, 2006, 2:33 pm 35 bryson says: why wont it let me use html codes to change texts in the div main content section? Posted January 2, 2006, 3:03 pm 36 jade says: IT DOESN’T WORK WHY IS MY FRIEND LIST STILL THERE Posted January 2, 2006, 4:31 pm 37 rico says: Easier to help with some links to ur test pages Posted January 2, 2006, 5:51 pm 38 jenn says: wow your really good at this but i put every thing where it’s supposed to be and it came out like a big clear box in the middle of my profile can you look at it and see what i did wrong pleace and thanx toodles jenn Posted January 2, 2006, 11:21 pm 39 ChozSun says: To answer my own question: I covered up the entire page and placed whatever information I wanted on my new page. I have to do it by hand and I am not sure if that is the best way but it works. Posted January 3, 2006, 6:37 am 40 AkRonin says: Derek, Thank you so very much for this simple tutorial. I got a MySpace account for the sole purpose of teaching myself a bit of HTML and CSS and have learned a great deal already. Your articles here have given me new insight I hadn’t had as yet, helped me to understand better some of the functions of the code, and also given me a few ideas of what else I need to learn. This is a great jumping off point and I appreciate the work you put into getting this out. Thanks again. AkRonin Posted January 3, 2006, 3:04 pm 41 amanda says: yeah i dont know what went wrong but my profile is fucked like seriously eek Posted January 3, 2006, 4:20 pm 42 tyler says: @jenn it came out like a big clear box in the middle of my profile Did you make sure to close all tags? The best advice would be to go back through the tutorials and make sure your code is the same as Derek’s. Also, make sure you put the right code (either CSS or html) in the right section (”About me” or “I’d like to meet”). If you still can’t figure it out, just post more questions. Posted January 3, 2006, 10:23 pm 43 AkRonin says: This is pretty neat stuff. I took the time to copy and save to notepad all the code I had on my site previously so that I could just reload it if I got myself into a bind. I recommend that anyone else who tries to alter their webpages without previous experience do the same. There is, however, one function of the original layout that MySpace has that I think is pretty nifty and would like to keep. The box that displays all your recent blog entries is, I think, a pretty handy thing to have on the page and I’m trying to figure out a way to keep on there. I understand that we’re covering over everything that was there with a new layer, but I can’t seem to figure out the code to have it look at my blog page.to obtain that information. I can create the container for it of course, no problem. I guess I don’t have a proper understanding of how MySpace gets that info in the first place. Does the blog page update the profile page when there’s a new blog post? Or does the profile page query the blog page every so often to see if there is anything new? I reckon I could just go in and alter the code on my profile every time I put up a new post, but that seems rather inelegant I guess. And bothersome!! hahah Any suggestions anyone? Posted January 3, 2006, 11:12 pm 44 Ramona says: Is there anyway to expand the Blog section to allow all blogs to be displayed within a scrollbox? Posted January 4, 2006, 5:20 am 45 AkRonin says: Ramona, I really don’t think there is a way to do what either of us is asking. We are in essence, as Derek said earlier in the comments under Part !, all but removing ourselves from the service. I think we’re going to have to try and figure out a way to make our profile page ‘look’ at the blog page to see if there are any new posts. For right now though, I’m not going to worry about it. I’m still trying to get my test containers to show up right. Or at all for that matter!! The text inside them comes up, but not the containers themselves. Posted January 4, 2006, 4:50 pm 46 AkRonin says: For some reason, the testcontainers are not displaying properly on the page. Teh text shows up between the ‘Main Content’ box and the sidebar. And none of the colors or borders I’ve tried show up either. This is the CSS I’ve used… .testcontainer{ clear: both; width: 529px; height: 400px; border:1px solid #666; padding: 5px; background-color: 999999; } .testcontainerl{ float: left; width: 225px; height: 280px; margin: 2px; padding:3px; background-color: 865433; } .testcontainerr{ overflow: scroll; float: right; width: 275px; height: 250px; margin: 2px; padding: 3px; background-color: 888888; } And the HTML bits… YOUR SIDEBAR CONTENT We’re going to float this container to the left We’re going to float this container to the right Does anyone of you that managed to get this working have an idea? Posted January 4, 2006, 5:18 pm 47 AkRonin says: Er, Here’s the HTML… br /> YOUR SIDEBAR CONTENT /div> div class=”testcontainer”> div class=”testcontainerl”> p>We’re going to float this container to the left div> div class=”testcontainerr”> p>We’re going to float this container to the right /div> /div> Posted January 4, 2006, 5:23 pm 48 Tom says: Getting exactly the same as you AkRonin. Is this code definately correct as I have now followed all the tutorials to the letter and still getting no joy. Posted January 4, 2006, 6:18 pm 49 Chubbs says: Whats the code to change the ugly myspace blue that the ad and search field get contained in? I’d very much like it to be the same color as the rest of my page, but it isnt. Posted January 4, 2006, 6:30 pm 50 AkRonin says: Chubbs, that’s been covered a few times in the comments for Part I and Part II. Posted January 4, 2006, 6:36 pm 51 Chubbs says: *sigh* I read through all the comments of part III and IV. My brain is frazzled from all the “plz tell me what went wrong kthxbye” posts that I decided if I couldn’t beat them, I’d join em. Guess I’ll start digging now. Posted January 4, 2006, 6:52 pm 52 AkRonin says: Woohoo! Got the floating container bits to work out!! Tom, When I pasted the HTML code for the I’d Like To Meet section into MySpace, it didn’t render the quotation marks properly. Beats me why. I took a good long look at everything I had in there and found some funny characters so I deleted everythingwith ‘Safe Mode’ and repasted the code in taking care to make sure EVERYthing looked right before I hit submit. Don’t know if that’ll help you but give it a shot. I’m still strugling with getting the background image to work out right, which is odd as it looks fine on my ‘real’ site at AkRonin . My code for the background there is between style tags. My confusion lies in whether I need to place it into the .main class in the stylesheet or if I need to modify the div class Main portion of the HTML sheet. Posted January 4, 2006, 10:02 pm 53 AkRonin says: Woohoo! Got the floating container bits to work out!! Tom, When I pasted the HTML code for the I’d Like To Meet section into MySpace, it didn’t render the quotation marks properly. Beats me why. I took a good long look at everything I had in there and found some funny characters so I deleted everythingwith ‘Safe Mode’ and repasted the code in taking care to make sure EVERYthing looked right before I hit submit. Don’t know if that’ll help you but give it a shot. I’m still strugling with getting the background image to work out right, which is odd as it looks fine on my ‘real’ site at http://www.myspace.com/akronin My code for the background there is between style tags. My confusion lies in whether I need to place it into the .main class in the stylesheet or if I need to modify the div class Main portion of the HTML sheet. Posted January 4, 2006, 10:08 pm 54 Mike says: Like many of the others. I get lost on part 4 as to where to put these new codes and what to delete. Help? Posted January 5, 2006, 10:36 am 55 tyler says: @chubbs Whats the code to change the ugly myspace blue that the ad and search field get contained in? Reference this post here . Posted January 5, 2006, 12:36 pm 56 AkRonin says: I’m working right now on putting together the code to display all my friends inside a container in my sidebar. It’s not that difficult. They’ll be displayed in a scrollable box in two columns. Trying to figure out the table layout for it now. I do have a question to something I haven’t been able to figure out however. When you apply ‘clear:both’ to a float, does it automatically go underneath all preceeding floats and then to the left? Or can you apply clear:both and then ALSO float: right if you want it under a float on the right? If you were to go to my page, you could see that there is a space between my sidebar and the float for my friends. That is because of the other float that is off to the left. How do I get my friend’s container to mate with the sidebar container? Posted January 5, 2006, 10:54 pm 57 Marvin says: umm i keep on foolowing your directions but i just cant seem to get my scroll bar working can u give me the code that makes this i would appreciate it then i can learn from that code. Posted January 5, 2006, 11:30 pm 58 AkRonin says: Hey! What do you know? You CAN use ‘float:clear’ AND ‘Float:left or right’!!! That’s awesome!! Marvin, in the stylesheet , inside the div class you are going to call, you will need to have – overflow: scroll; – for instance, look at the tutorial for part IV, just at the top of this page. Posted January 5, 2006, 11:39 pm 59 AkRonin says: Hey! What do you know? You CAN use both ‘clear: both’ AND ‘float: left or right’ in the same class!! That’s frickin’ awesome!!! Marvin, If you look at the tutorial at the top of this page you’ll see you need to have – overflow: scroll — in the class that’s being called. Posted January 5, 2006, 11:51 pm 60 Jonathan says: Yea..a tip to anyone not getting this. When you copy code from here and paste it in, sometimes the quotations marks don’t transfer just right. So if you’re not seeing results, go find the quotation marks and take them out, and type them back in. Made mine work like a charm. Posted January 6, 2006, 3:45 am 61 Onnaleese says: hi i’m onnaleese. i tried this on a test site i made, and i think it worked. lol. I just have a couple questions. 1. what do i put for the links? and 2. is can i put anymore boxes? and if yes how? and how do i postion them to where i want them? my personal myspace is.:. www.myspace.com/geekette28 thanks for the help! Posted January 6, 2006, 12:02 pm 62 Jasmin says: i LOVE the tutorials so far.. but i really want to show my comments =[ can you tell me a way i can? Posted January 6, 2006, 2:43 pm 63 Erin says: I love the tutorials, and I got it all working in a new account, but then I tried to change it to my real one and the end of the page is showing at the bottom. Any idea how I can fix this? www.myspace.com/eriliz Posted January 6, 2006, 9:16 pm 64 Erin says: nevermind, I changed some things around and now it all fits Posted January 7, 2006, 12:52 pm 65 AkRonin says: .Derek (or anyone else who’s managed to figure out this particular bit…) I’m going to be putting my friends into a scrollable box within my sidebar. I’ve got the container for it all done and I’m ready to put my friends into it now. Got the code for it everything all put together but I’ve run into a snag I hadn’t thoguht about until now. It has to do with the picture sizes of my friends. You know on myspace in the ‘My Friends’ section where it shows all their pics, you can see that some af the pics are bigger and some smaller, all different sizes and whatnot. Understandable as not everyone uses the same program to upload photos and there isn’t really a standard for that sort of thing. My question is, Is there a way to, I guess ‘force’ would be the word, the pictures to fit into a size that I determine for each cell? I’m going to be making the width for each cell the pictures go into about 100-107 wide and high also. So 100×100 or 107×107. Since each my friends have different dimensions on their pics, is there some way to do this? This seems to be the only reason I haven’t been able to make it work. Or do I need to find pics of my friends that are all the same dimensions to make this work? I see on .Derek’s site that he has uniform picture dimensions of his friends and I think that looks just real neat and clean. Kinda going for the same thing on my test site before I implement it on my ‘real’ site. Any help woukld be greatly appreciated. Thanks. Posted January 7, 2006, 5:53 pm 66 Kenna says: i seriously need help. all i want is just a nice myspace, but mines like jacked up. i need help. i dont know if i did something wrong or not Posted January 7, 2006, 7:34 pm 67 Kenna says: checkk it out www.myspace.com/kennaboo12 Posted January 7, 2006, 7:35 pm 68 clarisse says: uhmm. im trying to add a bg image to my site but it didnt work. can you give me the code and were to put it. take a look at my page.. http://www.myspace.com/clari3sseann3 tnx.. hope you can help me. Posted January 8, 2006, 9:01 am 69 Juic says: Clarisse: Try adding this between your style tags body{ background-image:url(’IMAGEURLHERE’); background-repeat:no-repeat; background-attachment:fixed; the background-repeat is obvious and the attachment is fixed so it doesn’t move when you scroll. Posted January 8, 2006, 3:19 pm 70 Juic says: Forgot to add an } at the end. By the way, what code did you use to add ur comments over your DIV? Posted January 8, 2006, 3:26 pm 71 clarisse says: oh i just put links. coz evrytime i put the url of the i.e. send messages it didnt work. y? … body{ background-image:url(’http://www.filehigh.com/serve/9786/89479.jpg’); background-repeat:no-repeat; background-attachment:fixed;} body{background-color:000;} td, .text, div, input {color:894 !important;}span, b {color:d17 !important;}a {color:691 !important;}table, tr, td, tbody {background-color:transparent; border:0px;} blah blah blah… every time i put the code you gave me . at first the bg was color grey and ….my image didnt show up. why? Posted January 9, 2006, 5:18 am 72 .derek says: html was stipped from your comment. use < and > for < and > next time you submit a comment. as far as the background image is concerned, try using quotes. Posted January 9, 2006, 8:47 am 73 clarisse says: ok tnx a lot. but what if im goin to tile my bg. coz its kinda small. what tags do i use?? body{ background-image:url(’http://www.filehigh.com/serve/9786/89479.jpg’); background-repeat:no-repeat; background-attachment:fixed;} how do i chnged it this?/ well the bg works now. tnx a lot!! muwahs!! Posted January 9, 2006, 9:09 pm 74 clarisse says: ahh nevermind that question that i askedto ya. awhile ago. i can tile now the bg and it works. geez. tnx a lot !! guys!!! Posted January 9, 2006, 9:14 pm 75 jeb says: ok man…my myspace is looking awesome…i just have a simple question…like my nav bar comment box and all that i want to center to the middle of the page…but i can’t figure out how…so if you can help ill be glad to hear from you!! p.s. my myspace is www.myspace.com/iliveforwarcraft thanks! Posted January 10, 2006, 2:15 am 76 Josh says: I used code from another of your reader’s sites to put my comments in a scrollable box in my overlay, but It will not show for some reason. I messaged this person to see if they could help me, but never heard back (a little annoyed with this since I’ve seen several posts here by them asking for help… grrrr). With the limited amount I know about css, I don’t understand the section of code thats supposed to be doing this for me (where it refers to .r, .comt, .cstyle, .redtext, etc.). If anyone can check it out and see what I’m doing wrong I’d appreciate it. Here’s myspace Posted January 10, 2006, 7:59 pm 77 Josh says: oops, somehow my link is going to another .derkilicious page… I dunno. Here’s the site: www.myspace.com/jjscantina Posted January 10, 2006, 8:23 pm Leave a Comment Name (required) E-mail (required) Website Formatting your comment ( Close ) Formatting Your Comment The following XHTML tags are available for use: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong> URLs are automatically converted to hyperlinks. ↑ Back to Top | Textarea: Larger | Smaller Your Comment This Entry " Part 4: MySpace DIV overlay [Color] " was written December 25th, 2005 by .derek , and filed under Design , Geek , Social , Color . There are 77 responses. ↓ Read comments , respond or follow responses via XML . Trackback this entry. Entries XML | Comments XML | Powered by WordPress.com . Theme: Fauna



MySpace Pre Made Layout

Pre-made MySpace Layouts to use on your MySpace Profile Warning : main(inc/head.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 14 Warning : main(inc/head.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 14 Warning : main(): Failed opening 'inc/head.txt' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myspace/public_html/myspace-layouts-20.php on line 14 Warning : main(inc/left.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 21 Warning : main(inc/left.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 21 Warning : main(): Failed opening 'inc/left.txt' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myspace/public_html/myspace-layouts-20.php on line 21 Warning : main(inc/middlead.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 27 Warning : main(inc/middlead.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 27 Warning : main(): Failed opening 'inc/middlead.txt' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myspace/public_html/myspace-layouts-20.php on line 27 MySpace Layouts to use on your MySpace Profile! 3D Abstract Animals Cartoons Cars Flowers Girly Styled Guy Styled Hearts Singers / Artists TV Shows and Movies Misc. Total MySpace Layouts: ( Warning : file(admin/data/news.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 89 Warning : Invalid argument supplied for foreach() in /home/myspace/public_html/myspace-layouts-20.php on line 91 0) Warning : main(admin/show_news.php): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 126 Warning : main(admin/show_news.php): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 126 Warning : main(): Failed opening 'admin/show_news.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myspace/public_html/myspace-layouts-20.php on line 126 Select the amount of layouts to view 6 10 15 20 MySpace Layouts From MySpaceCity.com Warning : main(inc/right.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 155 Warning : main(inc/right.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 155 Warning : main(): Failed opening 'inc/right.txt' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myspace/public_html/myspace-layouts-20.php on line 155 Warning : main(inc/foot.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 160 Warning : main(inc/foot.txt): failed to open stream: No such file or directory in /home/myspace/public_html/myspace-layouts-20.php on line 160 Warning : main(): Failed opening 'inc/foot.txt' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myspace/public_html/myspace-layouts-20.php on line 160



Whore Train

Diary of The Food Whore: It's A Good Thing There Was An Open Bar Cooks rule. thefoodwhore@yahoo.com Texas Caviar For The Friend in Virginia, or was that Ohio? Lemon Drop Martini My Drink of Choice New York Social Diary Ina Garten My Friend Martha Nigella (Love Her!) Jamie Oliver Benjamin Christie Cooking in Austrailia My Friend in Bodily Harm - Veg DaMomma (Da Crazy Momma) Elizabeth Soutter Life Happens She Lives In Hawaii And I Am Bitter (That's my line, not the name of the blog) Fantabulous Designer - Echo Tiny But Fierce Accidental Hedonist Culinary Epiphanies Dr. Alice Dooce Spiritual Ammo Function Junction This Fish Needs A Bicycle Vinography Grasp & Place Social Graces I Bet She Heard My Burp How Embarassing. It's A Good Thing There Was An Open Bar Turning The Tables? When Money is No Object New Look, New Stuff, Same Sarcastic Attitude. Better with Age...or was that Bitchier? So Many Great Blogs! Christmas (1) Costco (1) Deli Girl (1) Etc. (6) Fabulousness (3) Food (8) Holidays (1) Home (2) Just My Luck (1) Klutziness (7) People (6) Quest for Knowledge (1) Quirks (2) Thanksgiving (5) The Blog (2) The Car (1) The Family (7) The Grocery Store (5) The World (1) Tricks (23) Winter Storm Watch 2005!! (1) February 2005 January 2005 December 2004 November 2004 October 2004 September 2004 August 2004 July 2004 June 2004 May 2004 April 2004 March 2004 © 2004-2005 The Food Whore Photo by gsgs Design by Creative Echoes Turning The Tables? | Main | How Embarassing. It's A Good Thing There Was An Open Bar February 06, 2005 So we're milling about the reception room last night bidding on silent auction items when The Sister leaned over and asked, "Do you smell something burning?" I did. I had noticed it earlier, actually, and did a quick case of the tables to make sure the candles weren't fire jumping creating a case of possible mayhem. But it wasn't the candles. I took a sip of champagne and nibbled on my slice of brie and replied, "I think they have burned something we're about to eat and I am starting to re-think my logic in not taking more grapes of the champagne table for fear of looking like a pig." At the same time The Super Hyper Friend approached and asked, "Do you smell something..." With that, The Sister and I raised our eyebrows and tilted our heads in the direction of the kitchen. It all started out earlier in the day when I was doing a final check on the seating arrangements when The Competitive Caterer was there setting up the buffet stations. I smiled and said hello and got nothing in response. The Event chairperson was standing next to me and said, "I think you just got snubbed." "I did, indeed." "Bad blood?" "Oh, no. I think it's more of a mind game. He's trying to get the upper hand in attitude." "He's trying to beat you at the Attitude Game?" "Yeah." "And he's met you, right? I know very few people with as much attitude as you - and I mean that as a compliment." "No you don't." "You're right, I don't. But it is part of your charm." "Oh I think so, too." So the afternoon went on and just before I left to go home and get ready for the evening, I took one last opportunity to be nice. I said the tables looked fantastic and I couldn't wait for all the great food. I got nothing in response. So by the time I came back a few hours later I could smell a hint of burned something in the air, which is when I did my candle check. It dawned on me as I was walking passed the kitchen entrance that the smell was wafting into the dining room from there. And honestly, my heart fell. Not out of selfishness fearing that my food would be icky. But because anyone who's ever been in food service understands that shit happens - and it happens at the most inopportune times. Things burn, breakers blow and ovens die, things get dropped and broken. It's the nature of the business that most nights can run as smooth as silk and then there are nights that you can't even get the damn can opener to work. And I reminded myself that mocking those who ride the same train will only come back to haunt you. But then I saw The Competitive Caterer again and again I smiled, and again I got nothing. So I thought, "screw it - game on." Now - before I go on - let me say that the percentage of people who can't control themselves at a buffet is about 2 in every 10. And what I mean by, "cant' control themselves" is that they can't seem to get the main concept behind a simply tool like a tong and they throw food all over the damn table. So you almost need one person just overlooking tables and reaching in to clean up around the serving pieces just to keep it from looking like breakfast time at a frat house. It's also something we spend a lot of time bitching about in the kitchen. And as I saw last night, this group was no exception. Except The Competitve Caterer didn't have someone watching over the table to clean up the spills because it was a mess. It looked like The Tazmanian Devil had touched down in the salad greens and then took a swan dive into the mushroom sauce. Which, I later found out, was the offending burning smell coming from the kitchen. Beyond that, the beef was cold, the vegetables over done, and the breads were dry. And everyone at my table agreed that it was a good thing there was an open bar. And then I felt bad because God - it can happen to anyone. Your worst fear is that you'll run out of food or it will just be bad. And no matter how many times you do it and now matter how confident you get you keep that fear in the front of your brain so as not to get so cocky that you do dumb things like burn the mushroom sauce. As the night went on I observed that I was not the only one being snubbed and treated poorly. It became clear to me that The Competitive Caterer must not have received the memo from Whore School that stated you must always save the bitching for the kitchen and put on a big smile when your everywhere else. Pick only on the unruly and use every ounce of charm you have when dealing with the rest. And remember to always be on your best game in case someone in the room has a blog. Posted by Foodwhore at February 6, 2005 09:16 PM Well fine job for not pointing at him and shouting loser for all of the party to see. I mean in that guys neck! Who is able to work with, live with, drink with, party with, the people in our industry, and still have such a lack of respect. Civility is at the core of our industry. You say hello to the line when you clock in, you say hello to each wait and manager as you first see them during your day. If you were in a fist fight with the bus boy the night before, you still say hello and act like professionals while you have your jobs to do. But to snub another person who does the same job you do, twice in the same night? WTF? Don't think twice about posting his schoolyard behavior here. I would have put my hand to his chest to shake, then complimented his sauce and his "laser sharp" skills in overseeing the kitchen on such a well attended night. That was karma knocking on his door for some past due collections. I am enjoying your posts, keep it up. Paul Posted by: Paul at February 6, 2005 11:15 PM Sounds to me like their lack of class was reflected in the quality of their product - both food and service. Unfortunate for the customer who hired them and unfortunate for the guests. Posted by: HomefrontSix at February 7, 2005 08:01 AM Isn't it fun to know that you can be a whore, but that you are a high class whore vs. a competitive, charmless cretin? Looks like we know who WON'T be catering their next event! Posted by: veg4me at February 7, 2005 11:47 AM I never fail to leave your site without a deep chortle or three at every post. You are simply amazing. Don't stop !! Posted by: Alder at February 7, 2005 08:30 PM I hope you handed out business cards!! Posted by: Dr Alice at February 8, 2005 05:33 PM What a great post! I love your writing, and can't wait to read more of you. Thanks for activating my sense of humor during the early-morning, gotta-go-to-work coma... Posted by: Fingerineverypie at February 9, 2005 03:35 AM Powered by Movable Type 3.15



Graphic Code For MySpace

MySpace GIFs - Graphic Comments for MySpace Friends Gallery MySPACE " / FUN VIDEOS GOODIES " / HOW TOs MORE GENs " / CREATIVE " / CHAT Customize Profile Banner Gen. Falling Objects Flash Gallery -GIF- Hide Friends HTML Editor Image Filters Link Effect Moving Lines Myspace Layout Online Now Icons Top Nav. Bar Text Editor Banner Gen. Cursors Flash Gallery Falling Objects Games -GIF- HTML Editor Image Filters Link Effect Moving Lines Playlist Generator Text Editor Tickers Comment Box Contact Tables Friends' List Marquee Slideshow Text Fade Whore Me WEBCOEZ Music Comment GIF Glitter Images Glitter Text Maker Image In Text Custom Cards © Nackvision.com Holiday, Christmas, and New Year Graphics Pages: PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 NEXT Image size: 24505 bytes "GET CODE" Image size: 59952 bytes "GET CODE" Image size: 22327 bytes "GET CODE" Image size: 28949 bytes "GET CODE" Image size: 232960 bytes "GET CODE" Image size: 11418 bytes "GET CODE" Image size: 196016 bytes "GET CODE" Image size: 5846 bytes "GET CODE" Image size: 65853 bytes "GET CODE" Image size: 3091 bytes "GET CODE" Pages: PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 NEXT Picture Comment Categories: What's Hot Now? Custom Glitter Text Angels Animals and Insects Animated Background Cool Avatars Cartoon Characters Cute Text Cute Dividers Dividers TONS Flowers Girl Characters Gliterry GIF Boys and Girls' Characters For Guys Mixed Images Playful Quotes Rainbows Text Comment GIF Text Comments II Text Comments III Tags Text Collection ...More Gifs Welcome Signs Christmas Share Your GIF Click on "GET CODE" to view real size image and get code for your Myspace, Blog, or Webpage NOTE: These graphics are in their exact sizes. Internet Advertising





rent video game college stadiums Edwin McCain Fans hilary duff music videos 1970 Fashion
Free Relevant Links

 Home

 MySpace

 MySpace Layout

 MySpace Editor

 MySpace Background

 MySpace Code

 MySpace Music Editor

 Free MySpace Layout

 Pimp MySpace

 Whore Train

 MySpace Video Code

 MySpace Graphic

 Customize MySpace

 MySpace HTML

 Search MySpace

 MySpace Cursor

 MySpace Pre Made Layout

 Free Cute MySpace Layout

 Cool Stuff For MySpace

 Cool Background For MySpace

 My Space

 MySpace Page" United States

 MySpace

 MySpace

 MySpace

 MySpace Profile. Find popular

 MySpace

 MySpace

 MySpace

 MySpace Editor MySpace Layouts

 MySpace

 myspace video codes, myspace

 MySpace

 MySpace

 myspace page! Wonder how

 MySpace

 Myspace | Promote! |

 MySpace

 MySpace

 MySpace: Who Gets The

 MySpace

 MySpace

 MySpace

 MySpace!" Profile Views: 284046

 MySpace

 myspace.com/thegoteamofficial" , United Kingdom

 MySpace? Posted in Broadband

 MySpace

 MySpace

 MySpace

 MySpace

 MySpace

 MySpace

 My Space Friends! THE

 My Space

 My Space

 My Space. Robert Young

 My space is your

 My Space Begins Downward

 My Space Begins Downward

 My Space Friends! THE

 My Space Friends! THE

 My Space

 my space. why cant

 My Space and that

 My Space

 My Space

 My Space) What if

 My Space , a

 My Space

 My Space

 My space! Laura Jan

 My Space worth visiting.

 My space Sky maps

 my space archive back

 My Space

 My Space v1.10 Author:

 my space all the

 My Space

 My Space You are

 My Space

 my space photos Buzznet

 My Space

 My Space -- Mi

 My Space — Thai

 My Space - Reflecting

 My Space by squirrelgirl

 my space' By Laura

 My Space Technology Library

 My Space

 MY SPACE BBC Homepage

 My Space

 my space , butler

 My Space

 myspace layouts Stand out

 Myspace layouts are an

 Myspace layouts Type All

 Myspace Layouts - Video

 MySpace Layouts ! We

 myspace layouts and change

 MySpace Layouts "just sharing