myspace layout classes tables page structure
First some Basics:
Because we can not alter the mySpace code, at the point the code is actually being created we have to use the type of commands which OVERRIDE the code.
While this has lead to my learning CSS much better than I otherwise would have, this is NOT the way one would normally write code.
One would not create a table with a background color of Orange and an Orange border, and then later override this with background-color:transparent; border:none.
Within a style block one can redefine the formatting for a particular HTML tag, at a particular depth, and/or in a particular class and/or pseudo class.
A style block starts with a style tag, and ends with a close style tag
The style tag is HTML. It tells the browser to interpret the following lines as CSS instead of as HTML.
To use Over Riding Style we need to know how to address the element.
This can be done with a combination of depth (parent-child relationships), style, and other html tags which identify an element.
The below picture shows the basic layout of the myspace pages.
Tables are shown with solid borders.
Cells (TD) are shown with dashed borders.
td.text is shown in red dashed
other td levels shown in black dashed
Divs are shown in thick yellow dashes.
img are shown with orange dashed borders (those very tiny images are clear gifs)
In the below picture I have rendered the following gone (so as to better show the outer structure)
table table table {display:none;}
object, embed {display:none;}

Things of Note:
- The right and left columns are cells
- The table which is one table deep has one row with 2 cells. The left most cell doesn't end up having any of our content in it, it is a spacer and contains a clear gif.
- The table which is two tables deep has one row with 3 cells. The cell in the center has no content (except a clear gif).
- The cell to the far right makes up the right column. It has a class assigned called text (unfortunately this class is used elsewhere, so while it helps with addressing it is not ideal).
The table in the center (the one holds our content)
It is 2 tables deep. It has one row and 3 cells. The leftmost cell makes up the left column of our page, the rightmost cell makes up the right column of the page.
The center column contains a clear gif spacer.
Now I will add to the picture, by removing the display none.
Instead of keeping a picture here, I have decided that I can render this image better, if I utilize a real myspace page.
I have taken a real myspace page, and have added the needed style commands to show the following:
div boundaries
table boundaries
cell boundaries
classes (assigned to cell, row, table, div, span )
other useful tags which we can utilize in our overriding style commands.
The page is best viewed in FireFox.
It does look ok in IE. However, the border spacing attribute could not be used in IE therefore I could not put as much space between the borders.
This makes it more difficult to see exactly where some boundaries are.
FireFox is Free, I recommend downloading it:
(I have a link to download firefox on my sidebar).
Below are links to myspace pages:
Regular MySpace Page Showing Structure, Layout, Classes
Artist (Band) MySpace Page Showing Layout, Structure, Classes
Both of the above pages have keys to the left, indicating what all the colors and formatting mean.
If you have any questions, you may post them here, and I will try to answer them.
(So far I have been able to answer most of the questions hitting this blog).
Later I will add some style to a film page as well, to show the same boundaries.
Because we can not alter the mySpace code, at the point the code is actually being created we have to use the type of commands which OVERRIDE the code.
While this has lead to my learning CSS much better than I otherwise would have, this is NOT the way one would normally write code.
One would not create a table with a background color of Orange and an Orange border, and then later override this with background-color:transparent; border:none.
Within a style block one can redefine the formatting for a particular HTML tag, at a particular depth, and/or in a particular class and/or pseudo class.
A style block starts with a style tag, and ends with a close style tag
The style tag is HTML. It tells the browser to interpret the following lines as CSS instead of as HTML.
<style type="text/css">
STYLE COMMANDS GO IN HERE
</style>
(often I am lazy and leave out the type, and so far this has worked for me. But it is a sloppy habit I should break).To use Over Riding Style we need to know how to address the element.
This can be done with a combination of depth (parent-child relationships), style, and other html tags which identify an element.
The below picture shows the basic layout of the myspace pages.
Tables are shown with solid borders.
Cells (TD) are shown with dashed borders.
td.text is shown in red dashed
other td levels shown in black dashed
Divs are shown in thick yellow dashes.
img are shown with orange dashed borders (those very tiny images are clear gifs)
In the below picture I have rendered the following gone (so as to better show the outer structure)
table table table {display:none;}
object, embed {display:none;}

Things of Note:
- The right and left columns are cells
- The table which is one table deep has one row with 2 cells. The left most cell doesn't end up having any of our content in it, it is a spacer and contains a clear gif.
- The table which is two tables deep has one row with 3 cells. The cell in the center has no content (except a clear gif).
- The cell to the far right makes up the right column. It has a class assigned called text (unfortunately this class is used elsewhere, so while it helps with addressing it is not ideal).
The table in the center (the one holds our content)
It is 2 tables deep. It has one row and 3 cells. The leftmost cell makes up the left column of our page, the rightmost cell makes up the right column of the page.
The center column contains a clear gif spacer.
Now I will add to the picture, by removing the display none.
Instead of keeping a picture here, I have decided that I can render this image better, if I utilize a real myspace page.
I have taken a real myspace page, and have added the needed style commands to show the following:
div boundaries
table boundaries
cell boundaries
classes (assigned to cell, row, table, div, span )
other useful tags which we can utilize in our overriding style commands.
The page is best viewed in FireFox.
It does look ok in IE. However, the border spacing attribute could not be used in IE therefore I could not put as much space between the borders.
This makes it more difficult to see exactly where some boundaries are.
FireFox is Free, I recommend downloading it:
(I have a link to download firefox on my sidebar).
Below are links to myspace pages:
Regular MySpace Page Showing Structure, Layout, Classes
Artist (Band) MySpace Page Showing Layout, Structure, Classes
Both of the above pages have keys to the left, indicating what all the colors and formatting mean.
If you have any questions, you may post them here, and I will try to answer them.
(So far I have been able to answer most of the questions hitting this blog).
Later I will add some style to a film page as well, to show the same boundaries.
Thank you for Visiting; Have a Nice Day :-)
myspace page layout showing myspace classes and layering
myspace classes
explain what classes used in myspace
how can I make use of the new myspace classes
51 Comments:
hey
i use a layout generatorfor defaults
and the common color is white for the tables
it doesn't give me the option to change it
and when i add in a code to change it, it turns back into a regular looking profile
do you know of a code i can use?
What generator are you using?
I will give you a very basic code, to change the color scheme.
<style>
{!remove default coloring!}
table, tr, td {background-color:transparent;}
{!add the color you want!}
{!color for the full page!}
body.bodyContent {background-color:violet !important}
{!below will color the background off all of the main tables in the main section!}
table table table {background-color:pink;}
{! give all tables a nice border color !}
table table table {border:3px solid; border-color:magenta;}
table table table table {background-color:transparent; border:none}
</style>
ilyts.net
&& i've tried the myspace gen but it doesnt work very well
my friend got me using ilty.net and it's not very good but it's okay i guess
but thanks so much!!
Hello,
Im new to your site..I love this site very nice of you to Help people out.( like Me) I been looking for weeks trying to figure out .
1. how to use your grid.( I use Mac)
2. how did they do this ( with art work on the side Like Myspace.com/giuliogenua)?.
I dont what size the photoshop document should be for middle and sides.
thats all for now.. i have millions of question.
Ok one more is it possbile to use a flash website on myspace?
fyi - There is a noticeable shift to the left of both columns on default profile layouts tonight... I assume it occurred sometime today.
First of all... WOW thank you so much. I've been working on redoing the page for a yet to be fully launched digital record label and i keep referring back to your site as a resource. I do have a year and a half of professional web design experience, but that was back in the 90s and I was using Dreamweaver. My main focus then was on graphic design, site layout, and navigation... Dreamweaver did most of the code for me. Hence dealing with Myspace's code is a bit frustrating to me making it look the way I want.
Anyway, i'm rambling.
Here's the test site we're using. www.myspace.com/nextleveltest The issue I'm running into the tables on the left and right. We want them to line up flush with the red MySpace Music nav bar. The one on the left with the Name, Genres, Location, Profile Pic, etc. sticks out to the left some. And the one with the 'About, Friends Space, and Comments on the right sticks out to the right. Now, unlike on your music3test our music player is by default lined up with it properly. i'm not sure if that's something I did, or it did indeed default that way.
So the question is, how do I define the positioning of those tables? Is there a way I can eliminate and/or replace the invis spacer gifs to adjust the formatting? or are the tables defined by % and if i do that, the other side will just shrink and I'll still have the same positioning.
And another thought here. It might help to label the different DIVs, Tables, and Cells in your music3test and Dr Hoovey sites. Such as DIV1, DIV2 or T1, T2, C1, C2. Might make referencing things when describing them to other users easier to understand.
Thanks so much,
tygon,
Take this out:
<span class="off">!- BEGIN Scrolling comments-!</span>
<br><br><br><br>
<DIV style="height:475px; width:470px; overflow:auto; border:none 0px solid;">
<table><tr><td><table><tr><td>
<span class="off">!- END Scrolling comments-!</span>
Where did you get the above code?
I am curious.
The result of the above is to suck the friends, comments, and bottom links into your about me.
This doesn't help your alignment problem.
And it is not necessary.
You can create a scroll comment space without doing that.
To remove the clear gif to the far left:
table td img {display:none;}
table table td img, div table td img {display:block;}
table td {width:auto !important;}
(make sure it goes in a style block)
Your profile will now center, however, if you have tables, in the right column, which are wider than the music player, the alignment at the very top may not look like things are centering.
To see what I mean add this (temporarily to see the alignment)
table table td {border:1px white solid !important;}
table table table td, table table.friendsComment td {border:none !important;}
(the above also goes into a style block).
Well I got the code you asked about from http://www.myspacehun.com/myspace-tweaks/
i dont think its a bad site for codes and such, but ive quickly come to the determination that I am at the point that I am beyond the point of just taking some pregenerated code from someone and getting the page to look the way I want it to. Which is why I am EXTREMELY thankful for your page here because you're actively helping people UNDERSTAND how this works and how to do it ourselves. Its not just about "Here, this will do what you want." its about "Here's what you're looking at and how to determine what you're asking it to do"
And I think I'm really begining to understand how all of these things are defined.
and if im not mistaken this:
table -defines basically everything that is "your profile" however what confuses me is that based on music3test, it looks like the bottom 'About|FAQ|Terms' etc bar would also be defined this way.
but going ahead with what i'm trying to understand...
table table -defines everything from the span.nameText and the music player down to just above the table.friendsComments
and, if i'm correct, how id define the span.nameText, profile pic, headline, location, and, view my: pics would be: table table table
Am i on the right track here??
I updated the page i referenced earlier with the code you showed me which did a good job at getting the alignment closer but its still off a bit. And the temporary one (to show alignment) helped too.
So in that code you gave me:
table td img {display:none;}
this is clear. its the first transparent gif as its in one table, and the first td in that table, and that we dont want it there.
table table td img, div table td img {display:block;}
this one confuses me a lil. ok, so table table td img= the second transparent gif in the center of the page. but doesnt div table td img define the 'Myspace Music' image in the red myspace music bar? and what does the {display:block;} that we want both of these images to be shown?? If that's the case, why do we have to define the Myspace Music img and say we want it shown? wouldnt it be by default anyway?
table td {width:auto !important;}
this basically says 'ok, now that we've told it that we dont want that first transparent gif shown, now we want the td to automatically collapse/expand based on its content (which is nothing). Correct?
and with the 'temporary' code you gave me:
table table td {border:1px white solid !important;} this says i want everything that's housed in this td (which is; the upper left Profile name/pic/location, the contact table, the URL box, and the General Info table...) to have a white border, and is why i have a now noticeable gap sectioned where the second transparent gif is housed.
table table table td, table table.friendsComment td {border:none !important;}
and this is saying no border under the span.nameText, above the profile image & headline; but again, the second part confuses me.
i dont see a td that's at table table.friendsComment td i see a td.text, and with in that two more tables, but no td directly inside of table.friendsComment
now... IF i've got that right. take table table table for example on my profile... how do i now orient that within the first table
or would i be just better off to cover that all up and orient that table with an overlay?? cause if that's the case, then i've got to go about figuring out how to make DIVs relative to other elements.
Anyway, i hope i'm not chewing up too much of your time, but I again thank you for all your insight as you have taken something that was a great frustration for me and turned it into an almost addictive thirst for knowledge on it. You are the first resource i've found that really digs down and gets to the bottom of how this all works.
and oh yea... i guess i didnt actually log into my google account on here last night, so i think its showing up as my real name now.
-Scott aka Tygon
Scott
Sort of, but not exactly
table {style stuff here}
would apply "style stuff here" to EVERY table in the profile, unless that table had an overriding style set at a more explicit level.
table table {style stuff here}
would apply "style stuff here" to EVERY table which had a Parent element which is a table,
unless the style was set more explicitly somewhere else.
There are various rules of precedence which apply.
Not all browsers have exactly the same rules.
table table table td
is equivalent to
table tr td table tr td table td
I tend to leave out intermediate element which do not have classes assigned, because they add no value, unless I am overriding something where I did use that level, where there was a class.
Many would do this:
td td td
I hate that, because I think it is illogical to jump over tables to cells (td = cell).
However, the person that most people copy uses that style.
And when he copies my code, he changes it to that style.
I dislike doing this:
.friendSpace
and will instead do this:
table.friendSpace
But as long as the friendSpace class is only used once (as it now is) and assigned to a table, the two are equivalent.
table.friendSpace td
is a superset of
table.friendSpace td.text
table.friendSpace td
would apply to ANY td which has a parent table of class friendSpace
table.friendSpace td.text
would apply to any td of class text, that has a parent table of class friendSpace
I may have just td, where I should have used td.text, with out it ever causing a problem.
Eileen,
Thank you very much for posting your codes and with very good explanations. I am using you code in my profile (MySpace). Most all of it has worked for me. I do however get flashes on my page. Would this be the Adobe Flash or Java scripting?
I have given you credit on my page which is well deserved for you. Again, Thank you for sharing and updating codes for myspace.
Sinbad
Hi, i just wanna say thanks so much for this site cuz its been such an awesome help. I just had a really quick question about something with my own band myspace and i was wondering if you could help. The site is www.myspace.com/civilitymusic and i've been trying to fix the tables in the middle of the site. I was wondering if there was anyway to get rid of that huge gap in between the 'latest blog entry' box and the 'band name' box. For some reason the boxes on the left aren't the right size either. Basically, im just trying to get my layout in the center between the two side borders without that huge gap in the middle and without messing up the banner at the top and by keeping the tables switched. Any help would be appreciated, thanks again!
nvm i figured it out, thanks though!
How do I create a cell within a cell? Is that possible?
uhhh, OK, I don't get it.
The table table table td syntax you are talking about is for the CSS, but then how do you call it in the HTML (not talking about the class= tag. Read on and it'll become clear)?
For example, I created a div overlay that covers everything. Then I wanted to get back my Friend space section. I did this w/ no CSS using some code I found like this, and placed it within the td tag of a table cell:
NOTE: Since this blog accepts HTML code, in order to avoid conflict I've replaced the html open and close angle brackets with the [ and ] characters.
[div class="friendSpace" style="overflow:auto;height:250px;"]
[table][tr][td]
[table][tr][td]
[/div]
This places the friends comments and list into my table and with a scrollbar. Pretty cool. However, I don't understand the
[table][tr][td]
[table][tr][td]
portion of the code. Change it, and it moves, or even removes the friends & comments section. ALso as you'll see, if I replace the class with another name it's just styling the text so it seems.
I'd like to do something very similar with the Latest Blog Entry (.latestBlogEntry), but when I try it changing the class I get the same results as if I had just left the code above. Obviously this means that the .friendSpace and .latestBlogEntry classes in the CSS have no placement code, just font colros, style, backgrounds, etc.
So, I assume that I can create my own styling class, and apply it to the blog entry by calling it just like above, but what do I replace the
[table][tr][td]
[table][tr][td]
code with for this to apply to the Latest blog entry?
And if I wanted to do this with any other element how do I determine how many of which table tags to use????
Thanks!
I don't think it is as simple as what you are attempting.
If I do this:
<table><tr><td>
I am opening a table, row, cell.
Usually if I am doing that, somewhere else I have done this:
</td></tr></table>
The reason I can do this, to wrap a div around the friends and comments, is because there is a nice code input point, at the end of the meet section.
So I can close off two layers of cell/row/table
open a div
open two layers of table/row/cell
The reason I have to alter the table structure, to insert the div, is so that when the close tags (the ones myspace already has in the code) are encountered, they map to something, that does NOT result in the closing of the div, before the opening of the friend and comment tables.
The reason I can not do this for the blogs, is that there is no code input point.
If one hides the details, schools, companies, networking, and extended network; then it is possible to get the blogs into a div.
But it does require extreme structure alteration.
And I don't consider it of much value.
Umm, OK, still confused. I guess you are saying that you can use that table tr td code in the HTML section because it gets closed out somewhere in the my space "built-in" code or something? Confused.
Anyway, now trying to follow your other div tutorials and ran into more confusion. :-) You'll notice my post as I use the [ and ] to replace the angle bracket in that post as well. I think I am getting further along in those tutorials.
I am working on a music myspace and set the BG color to black (000000) - I am running into a problem with what I think is the blacktext10 - I can't get it to change from "000000" to "ffffff" successfully. I've tried coding it in but just can't get it to work.
First I guess I want to be sure that that is the correct section to change - secondly - if it is - why would it not be changing?
Thank you in advance
thanks for this post, very helpful :)
Hi, I've almost completed my music page layout with the help of your tips. There's just one more tweak I'm trying to get: My overall TD is set to transparent, so my general info box is completely filled with the background of my level 3 table, with its cells transparent. I like it, but the right column text outlining band members, etc. is a bit hard to read. What I want to do is set a background for just the right hand column of general info cells. td.columnsWidening did the trick for the comment table, but I can't find the id to do the same in the general info table. It would also be great to do the same for the top user info box (changing the background for just the right hand cells under the text). Thanks for all your effort!
Hi,
I really need some help with my bands myspace page.
The layouts has been fine for a long time, than one day I logged on and everything was moved over WAY far to the right, and theres a bunch of white space. I even took out ALL the code, and it still moves over.
Is there some way for me to correct this?
Heres the page
www.myspace.com/theskylinelights
Thanks!
I've managed to work codes for everything and my page is getting there - thanks!
It is however looking a little white, see for yourself: www.myspace.com/swervetracks
I'd like to put two black strips down either side but without a image editor on my computer I can't create a background.
Can anyone help?
Thanks :)
Can someone please tell me how to make the [hr /] tag draw a line right across the two sections/cells of the "Interests" box.
It consistantly wraps everything at the end first cell.
I have been entering images/ url's etc into this area and wish to rule a line to separate the different Bands/friends etc to stop confusion.
At first i had great success with getting the urls to continue in one line so they made more sense, by using the [nobr] tag
But then the browser suddenly stubbornly refused to do this.
After much googleling i came to the conclusion that XHTML or some form of it was now being used by myspace, so [nobr] will no longer work.
I am now using [span style="white-space: nowrap"]xxxxxxxxxxxxxxxxxxxxxx[/span] to great effect.
However it does not stop [hr /] from wrapping.
Is the line which [hr /] draws different to the text i am entering?
Confused.
I have had good luck with
br {display:none;}
(in a style block)
I'm hoping someone is still out there!
I'm trying to embed a flip book from issuu.com
made the flip book and got the mini viewer to work but to embed the full size viewer it says to make an html frame that points to the url. (CSS,html idiot here)
I'd like to place the full size viewer at the top of my band myspace page (using the div overlay tutorial)
Just need to know the correct code and where to put it.
Thanks.
You may not want to use the div overlay tutorial for this.
You may instead want to use the tutorial for placing custom content (such as a banner) at the top of your page.
Custom Content on top of page
My example uses an image, but you can just as easily insert a block of object code, inside the div class="mybanner".
Eileen,
I'll give it a try. I have to thank you for the EXTENSIVE tutorials. I did another DIV overly on my other band page and I'm really happy with it. I'm was completely clueless and even though only bits and pieces of the code make sense to me you made it possible for me to give my page a new look just in time for my new cd release.
THANK YOU for everything.
Ruby
Hi,
Firstly thanks...I managed to get a banner up after using your code. Wondering if you could point me in the right direction with another problem?
I'm trying to add more custom images to my music page outside the 2 main tables but when resizing page/using alt browsers it all moves about. How can I get round this please? For example, on my blog section I wish to add a custom made 'heading' JPG to overlap where it says 'my name's latest blog entry'.
I don't know much about html, just simple code.
Any help much appreciated! Thanks.
Hey hows it going. Thanks for all the great info, it has helped me alot. My site is myspace.com/rockabilia and I was wondering if there is a way to move the .friendspace up to clear the extra space and also close the space between .friendspace and friendscomments or should they just be placed seperatly.
i have whitespace at the bottom of my page and i tried adding the margin-bottom but it didnt work.
eg. {position:relative; top: -203px; margin-bottom:-203px}
i also tried changing visibility:hidden to display:none but that just hid the entire right hand side of my page.
www.myspace.com/nicolej_x
help.
Hi Eileen.
I am trying to update a business myspace profile for a video production company.
(http://www.myspace.com/vision4dreams)
I am having some serious issues with the code im using though.
Firstly how do i make it so that all the tables to the right of the page are not only alligned but keep to the width of one page?
And as it's a profile for a video production company i've got some uploaded videos on the profile. However the code i've used is making the table that contains the videos centre the contents and the table colour is not one that i selected. i cant figure out to change it. Is there any codes you can suggest?
aimee
Do you mean keep all the right side tables the same width as the right column?
You can take control of the width, and set the width of all the right tables the same as long as you do NOT have any content, in any of the tables, which exceeds the width you set.
Content will cause the table to expand as needed.
table table td.text table {width:500px !important;}
table table table td.text table,
table table td.text table {width:auto !important;}
in a style block.
Are you using the built in myspace functionality to upload the videos?
I have no videos on my test film page yet, I would have to put one there to see where they fall.
I think they fall top right, but not inside a table.
If that is the case, they may be hard to control.
I would have to upload a video and play with it some to figure it out.
Hi. I'm having a problem with my code and can't figure it out. I want to put a separate background in the middle of my page using table table but I don't want it to cover up what I've done at the tables within the orginal table table. (like table table table, .extendednetwork etc) Is there any way I can do this??
You can take a look at myspace/ashley7renee
Do this:
table table {background-image:url(URL);
}
table table table {background-image:none}
Unless you have already assigned background images at level
table table table
in that case you won't need the none.
Anything done to level
table table
WILL effect level
table table table
UNLESS
you have an override command for level
table table table
Thank you!!!
Hi! I just need some help. I am not able insert image in the latest blog entry section in the profile page of myspace. In the customization options there is no seperate module for customizing the latest blog entry section. Can some one figure me out if it exist or help me out with the codes and ideas how to insert image in the latest blog entry section. Thanks in advance.
You can customize the blog table (the one on your profile page), by putting style code into the "about me".
Try this:
Click Here
Thanks for the link. But I want to hide the links in the latest blog entry section like we can do for contact tables and want to put a image on top of the hidden links. Exactly in the similar way that we have in the myspace profile editor for contact tables.
Thanks
That is an interesting idea.
You could not do it the same way the contact table is done, because the actual links are not link images, as they are with the contact table.
However, you could try making them transparent (and opposed to hidden or display:none).
Even then, there is going to be cross browser issues, because the links are text, that will not size exactly the same cross browser.
The spacing between the links will also differ.
This blog is THE best on the web for this stuff. Thank you! Quick question, i was wondering how to grab my bottom toolbar and edit it. It is somehow in the middle of my page, and I can't tweak it. www.myspace.com/sevenglory Thanks, gabe
how can I change the structure of my myspcae to look like http://www.myspace.com/sanctusreal
thabk you.
andre
O.k. quick question. I made my own Background in Flash 8. How do I assign it as my background instead of it appearing on top of my whole page? and How do I make sure it ends up center horizontally and vertically?
Well Jones, it is not impossible, but how difficult it is, depends on how much you understand, and what else you have done to your profile.
You can not apply it using the background property, because it is not an image.
You can get it to sit, behind the rest of your content, using z-index.
But it is a little tricky, and does not work the same cross browser.
You want to use position absolute.
You want to measure, from top center (not top left or top right).
You want to give your object a class, so you can use the class, to position, and not effect other objects.
Then
object.YOURCLASS {position:absolute; top:Ypx; left:50%; margin-left:-Xpx; z-index:-1}
X = half the width of your object
in IE z-index:-1 works.
in other browsers use z-index:0
Next you need to insure that the stuff you want sitting on top of the object, is a higher z-index.
To get this to work, your object (the one with your background) needs to site OUTSIDE of the table structure, you are going to apply a higher z-index to.
To do this, you need to close the table, you are in, when you enter the object code.
You need to close at least two levels of
cell/row/table
because all the content entry points are at least 4 tables deep, and we are going to z-index, higher, anything 3 or more tables deep.
For example (and I did not test this, I am just doing what conceptually should work)
put this at the bottom of the about section:
</td></tr></table>
</td></tr></table>
<div class="myBkgd">
put your object code here.
</div>
<table class="off"><tr><td>
<table><tr><td>
<style>
div.myBkgd {position:absolute;
z-index:0; _z-index:-1;
top:0px; left:50%; margin-left:-400px;}
table table table,
div, div table {position:relative;
top:0px; z-index:5}
</style>
I am sure my post is confusing.
In my example I position the div, but I tell you (earlier) to position the object.
Either works, but I recommend using the div, and putting the object inside the div, as I do in my example.
(myspace edits objects, and I am not sure if they will edit out a class or not.)
I LOVE YOUR PAGE!!
Ive been able to learn so much here and appreciate what you do for all of us. I do have a question reguarding the use of ImageReady or Photoshop for slicing images and embedding some FLASH or other Links in general.
The Test page I created is :
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=385004449
If you see the white cells that were outputted from ImageReady code, Im not sure what I'm missing?
Ive tried using the output settings in ImageReady to "create CSS" instead of tables but all it does is center ALL of my image slices down the page. Any help would be great from anyone here.....
RJ
rjechoes@verizon.net
Is there a way to have the text in the "music" , "movies", etc. boxes appear directly under the headers instead of below and right of them? According to your diagram, it looks like the header text is in one cell and the input text is in a cell to the right. Is there a way to change that? For example, how it is now...
MUSIC:
---------"text input into section"
(without dashes-just to show space)
I would like it like this:
MUSIC:
"text input into section"
Thanks in advance! I've been going nuts trying to figure this out!
Hello,
I need some help customizing my MySpace Filmmaker page. I'm basically trying to figure out how to separate the main top navigation bar from the "MYSPACE FILM" navigation bar below it. An example of this is at this page: http://www.myspace.com/harshtimesmovie
So I guess I have a few questions:
1) Does anyone know the code to make this work on a filmmaker profile?
2) Does Eileen or anyone else have or know of a MySpace layout chart for the filmmaker profile depicting the various tables, divs, and classes?
3) Does anyone know how I can "rip" or copy the code from the myspace page I've listed above?
This has been driving my crazy. I spent hours experimenting and searching for any guidance on myspace filmmaker layouts and couldn't find anything except a few other people were also frustrated in trying to customize there filmmaker pages.
Thanks in advance for the advice and feedback
This post has been removed by the author.
OMG! I need help so bad! I have been trying for weeks to figure out how people get like the blocks of color on there profiles ie: the about me,who I'd like to meet,ect. Here is an example of what I'm talking about.
click here
It's the blue and brown color strips where the about me is and the details section the status,here for ect.
I'm wondering how to incorporate that into a layout code. Where in a layout code does that go? Thanks so much.
Eileen,
i'm having a little trouble trying to find out how to remove the space on the bottom of my page.
i'm guessing that it's because of the codes that i'm using to hide the bottom links and the profile details.
i've already tried changing visibility:hidden to display:none.
but i think i'm doing something wrong.
these are the codes:
table tbody td table tbody tr td.text table {visibility:hidden;}
table tbody td table tbody tr td.text table table, table tbody td table tbody tr td.text table table tbody td.text {visibility:visible;}
.userProfileDetail {display:none;}
www.myspace.com/245214651
how do i get rid of the left-most cell? and then get wide view?
had it earlier today and lost it... now the name bg image is larger than i had it, but ok. had a much wider entire page and the headline was stretched out along the top on one line.
your pages have helped me tremendously! thank you!
myspace.com/gdgrl828
hey i am just reliee trying to find out how i can remove n hide things from my profile i have noticed soo many people these days have erely anyting on them like just about me and a picture then the words pictures, comments, friends ,add
can you please tell me how people do that :) many thanks x?? please comment me back x
Post a Comment
Links to this post:
Create a Link
<< Home