MySpace Blog Page Layout Customize Style
This page covers the myspace blog page. If you are trying to customize (style, hide, remove) the blog space, on your profile page go here:
MySpace Blog Table Style or Hide
MySpace Blog Customization
MySpace made some MAJOR changes to the blog page over the last few days. Everything in this article has been updated as of 30 Sep 2007
I am not going to cover the "official" customization method.
This one is obvious. If all you want to do is ditch the ugly color scheme and pick your own, I recommend using the built in customizing editor.
What I am going to cover is the "other stuff".
How to customize the blog withOUT using the built in blog customize editor.
This article was inspired by an efriend of mine, when myspace made some changes which messed up her customized blog. (It messed up a lot more than I originally thought, and I am having 2nd thoughts about my suggestion to just use their customizing features.)
Please refer to the diagram on this page:
Click Here: This is an actual mySpace blog Page with style commands added to show the classes and structure
As dynamic as the myspace code is, the above diagram is subject to change at any moment. But it does have the style coded directly into it, so if myspace changes their code, the diagram should automatically reflect that.
If you bring up the myspace page, with the diagram, in a different window, you can refer to it while you read this article.
Notice the key to the left (on the diagram).
We will be referring to this key.
Remove the "who gives kudos" along with the name and the kudos they gave.
You can paste this code into the "custom style sheet" data entry space.
To do this I also hide the time and the number of comments (not that it is impossible not to, but not worth the effort, unless someone asks me specifically).
You can paste this code into the "custom style sheet" data entry space.
Remove the MySpace Logo
Now that this has been moved to the top, just left of the ad banner, it is no longer as invasive. But removing it is even easier than before.
Notice that it is one table deep (look at the key, and you will see that a solid hotpink border represents a table).
If I do this:
table img {display:none}
It will remove a lot more content than I want to remove.
So I recover the other content like this:
table.main img {display:block}
You can paste this code into the "custom style sheet" data entry space.
Bottom Links and Copyright
Notice that these are 1 table deep, and the table has no class assigned.
Notice that all of the text in this space, has some attribute assigned to it, which we can use in a style command.
It is all inside a font tag (which I indicate with a double green border.)
REMEMBER that the actual content of the blog may contain font, div, strong or other tags which do not show up in my own blog examples. Keep this in mind when making edits.
If I want to get rid of the bottom link section (and take those pesky pipe characters with it) and NOT effect anything else, I do this:
Now if I also want to remove the bottom links and copyright thing I do this
If I only wanted to remove the copyright, and leave the links, I would do this:
However, sometimes, neither block OR inline will get things back to the way they were. Often an element has some other default display mode, that is not recoverable.
This is why visibility:hidden is sometimes a better choice.
Removing the menu which is between the custom header (the one you add) and the main blog area
Looking at the diagram, this has a violet border around it. Looking at the key I can see that this is assigned to class="nav".
One line of code to remove this is:
Putting the Blog Into A Scroll Box
I use the Custom Header area for this.
Mark the circle next to "Your Own Header HTML"
(If you don't, it will not read any html put in the text entry box in that section).
Put this code inside the text entry box, for the Header Code:
Change the height of the div as needed.
To eliminate the border change it to 0px. Otherwise change color and size as desired.
The left side bar contents (where it has your profile info and such) will be inside the scroll box. The bottom links, and header information, will not be inside the scroll box.
Adding Your Own SideBar to Your mySpace Blog
The following code block will add a side bar to the right of your blog.
The sideBar Will start just under your custom Header, float right, and run parallel to the main table. In this example, the bottom links will float left with the main content.
To make this code block work, you must mark the circle that says "Your Own Header HTML" in the page header section, of the blog customize page.
This code goes into the textbox just next to this.
IF you do not allow enough room for the side bar, it will float to the top, and push down the rest of your content.
In my testing, I was able to make the page pretty narrow before this occurred.
Feel free to change the above values, just insure there is room. Include any space required by borders and/or padding. FF and IE treat these differently.
I will cover another strategy later, one that has less risk of floating to the top of it runs out of room (instead it will overlap). The other strategy also takes more code.
If you want the bottom links to fall under the side bar it gets a little more complicated.
Because float, acts like position:absolute (in FF but not in IE) unless we create an outer container, which has a hard set size, with enough space to accomodate our side bar content, we risk having the side bar overlap the bottom links.
(I will cover this one later also)
MySpace Blog Table Style or Hide
MySpace Blog Customization
MySpace made some MAJOR changes to the blog page over the last few days. Everything in this article has been updated as of 30 Sep 2007
I am not going to cover the "official" customization method.
This one is obvious. If all you want to do is ditch the ugly color scheme and pick your own, I recommend using the built in customizing editor.
What I am going to cover is the "other stuff".
How to customize the blog withOUT using the built in blog customize editor.
This article was inspired by an efriend of mine, when myspace made some changes which messed up her customized blog. (It messed up a lot more than I originally thought, and I am having 2nd thoughts about my suggestion to just use their customizing features.)
Please refer to the diagram on this page:
Click Here: This is an actual mySpace blog Page with style commands added to show the classes and structure
As dynamic as the myspace code is, the above diagram is subject to change at any moment. But it does have the style coded directly into it, so if myspace changes their code, the diagram should automatically reflect that.
If you bring up the myspace page, with the diagram, in a different window, you can refer to it while you read this article.
Notice the key to the left (on the diagram).
We will be referring to this key.
Remove the "who gives kudos" along with the name and the kudos they gave.
You can paste this code into the "custom style sheet" data entry space.
table.profile strong, table.profile span {display:none;}
Hide the number of kudos shown at the bottom of the blog entry.To do this I also hide the time and the number of comments (not that it is impossible not to, but not worth the effort, unless someone asks me specifically).
You can paste this code into the "custom style sheet" data entry space.
p.blogContentInfo {visibility:hidden; font-size:0px; letter-spacing:-300px;}
p.blogContentInfo a {visibility:visible; font-size:11px; letter-spacing:1px;}
Remove the MySpace Logo
Now that this has been moved to the top, just left of the ad banner, it is no longer as invasive. But removing it is even easier than before.
Notice that it is one table deep (look at the key, and you will see that a solid hotpink border represents a table).
If I do this:
table img {display:none}
It will remove a lot more content than I want to remove.
So I recover the other content like this:
table.main img {display:block}
You can paste this code into the "custom style sheet" data entry space.
{! hide myspace logo !}
table img {display:none}
{! ditch the border causing it to look funny !}
table {border:0px;}
{! recover images in main blog area !}
table.main img {display:block;}
You can add code to put in table borders where you want them.Bottom Links and Copyright
Notice that these are 1 table deep, and the table has no class assigned.
Notice that all of the text in this space, has some attribute assigned to it, which we can use in a style command.
It is all inside a font tag (which I indicate with a double green border.)
REMEMBER that the actual content of the blog may contain font, div, strong or other tags which do not show up in my own blog examples. Keep this in mind when making edits.
If I want to get rid of the bottom link section (and take those pesky pipe characters with it) and NOT effect anything else, I do this:
{! hide bottom links !}
table strong{visibility:hidden;}
{! recover stuff !}
table.main strong {visibility:visible;}
{!ditch the space if desired!}
table.main {margin-bottom:-20px;}Now if I also want to remove the bottom links and copyright thing I do this
{! hide copyright thing !}
table font {visibility:hidden;}
{! recover any blog content which may use u tag !}
table.main font {visibility:visible;}
If I only wanted to remove the copyright, and leave the links, I would do this:
table a font u {visibility:hidden;}
{! restore any use of u in blog content !}
table.main a font u {visibility:visible;}
You can choose to use display:none instead of visibility:hidden. Then the unDo would need either display:block or display:inline.However, sometimes, neither block OR inline will get things back to the way they were. Often an element has some other default display mode, that is not recoverable.
This is why visibility:hidden is sometimes a better choice.
Removing the menu which is between the custom header (the one you add) and the main blog area
Looking at the diagram, this has a violet border around it. Looking at the key I can see that this is assigned to class="nav".
One line of code to remove this is:
{! remove nav links !}
table.nav {display:none;}Putting the Blog Into A Scroll Box
I use the Custom Header area for this.
Mark the circle next to "Your Own Header HTML"
(If you don't, it will not read any html put in the text entry box in that section).
Put this code inside the text entry box, for the Header Code:
<span class="off">! START CUSTOM HEADER TEXT OR CODE !</span>
<span class="off">! END CUSTOM HEADER TEXT OR CODE !</span>
<span class="off">! OPEN DIV !</span>
<div class="myDivB" style="height:400px; border:2px green solid; overflow:auto">
Put any code, for your actual header, between the START header span comment and the END header span comment.Change the height of the div as needed.
To eliminate the border change it to 0px. Otherwise change color and size as desired.
The left side bar contents (where it has your profile info and such) will be inside the scroll box. The bottom links, and header information, will not be inside the scroll box.
Adding Your Own SideBar to Your mySpace Blog
The following code block will add a side bar to the right of your blog.
The sideBar Will start just under your custom Header, float right, and run parallel to the main table. In this example, the bottom links will float left with the main content.
To make this code block work, you must mark the circle that says "Your Own Header HTML" in the page header section, of the blog customize page.
This code goes into the textbox just next to this.
CODE FOR CUSTOM HEADER GOES HERE
<p class=C>
- START Code for Side Bar.
- STEPS:
- - Go up one Table level
- - Create Div for Right Side Bar
- - Put in Side Bar Content
- - Close Right Side Bar Div
- - Open Div which will suck in our main content and Bottom Links
- - (do not close above div it will close automatically when parent table closes).
- In the style block:
- - Size and Float the Right Side Bar to the Right
- - Size and Float the main content Div to the Left.
</p>
</td></tr></table>
<div class="RightSideBar">
Stuff In Right Side Bar Here<br>
more stuff in right side bar <br>
</div>
<div class="mainDiv">
<style>
p.C {display:none !important}
div.RightSideBar {width:20% !important; height:auto; float:right; margin-right:5px; border:1px magenta solid;}
div.mainDiv {width:76% !important; border:1px pink solid; float:left;}
table.main {width:99% !important;}
</style>Things to be aware of:IF you do not allow enough room for the side bar, it will float to the top, and push down the rest of your content.
In my testing, I was able to make the page pretty narrow before this occurred.
Feel free to change the above values, just insure there is room. Include any space required by borders and/or padding. FF and IE treat these differently.
I will cover another strategy later, one that has less risk of floating to the top of it runs out of room (instead it will overlap). The other strategy also takes more code.
If you want the bottom links to fall under the side bar it gets a little more complicated.
Because float, acts like position:absolute (in FF but not in IE) unless we create an outer container, which has a hard set size, with enough space to accomodate our side bar content, we risk having the side bar overlap the bottom links.
(I will cover this one later also)
Thank you for Visiting; Have a Nice Day :-)
Queries hitting other pages of mine, which should be hitting this page:
-myspace blog page codes.
-how to customize myspace blog page.
-myspace blog; how to change color
-myspace customize blog
-style sheet to customize blog on myspace
custom style my blog on myspace
Queries hitting other pages of mine, which should be hitting this page:
-myspace blog page codes.
-how to customize myspace blog page.
-myspace blog; how to change color
-myspace customize blog
-style sheet to customize blog on myspace
custom style my blog on myspace
Labels: mySpace blog Customize
25 Comments:
I think you rule.
I also have a question. I've been able to get my page pretty much how I want it to look. I was all happy.
Until I tested it in I.E.
Now I could be an elitist and say that anyone that uses I.E. can just suffer, however I have several aged friends who think Firefox is a dirty word and I want them to be able to read my blog.
The problem seems to the be div class float which is set to put up the link display on the right.
I tried resizing the div class table.main table.profile and table.blog separately (following your key which has become my favorite reading) but every time I resize something the table.profile follows the main and will not except independent width coding.
I'm sure I've done something wrong somewhere but I can't figure out what. I did set width for the header because otherwise the div class float crowds blogs on a click through if the browser window is not reading at full-size. Since I never have a full size browser I wanted that to be fixed.
Anyway, I think you rule. I praise your intensely made skills and would actually sacrifice small pieces of chocolate to the gods if you could tell me how to fix my I.E. problem.
I will continue to play with it, but your advice is appreciated.
You can find my myspace at
myspace.com/saradevil
Thanks for this page. You rule!
That is always such a bummer, thinking the page is perfect, and then comes the cross-browser testing.
I try to avoid using float, because it has such different behavior in IE and FF.
I will play around with creating a right side bar, in the blog section, tomorrow, and see what I come up with for a strategy.
Blogger allows javascript, to some degree. They don't allow it in individual blog entries, but I can put it in my template, and call it from a blog entry.
I doubt that myspace will ever allow javascript. Not everyone chooses to use power for good, there will always be those who choose to use it for evil.
I enjoyed reading your blog.
Thanks for taking the time to comment.
My blogger template was no problem. Took a little time to hack out the codes (I have to hack them out since I have no idea what I am doing it tends to be a lot of lot of playing, view, playing, view, playing, view, repeat ad infinitum) but it was a piece of cake compared to trying to get myspace to work the way I want.
The two big things would be putting up easily accessible labels and a much more functional calender, but with the way myspace blog calender calls things I think that will be the impossible dream. Ah well.
I look forward to your further advice. In the meantime I put up a note for my IE users and may default to my old theme while I try to figure it out along with you.
Cheers,
Sara
I have a question and problem you might be able to answer/fix.. Myspace only allows you to view 15 of your own blogs per page.. I would much more prefer 50-100 or even ALL of my blogs at once. I really don't care how much resources it eats in the process of posting all the text.. I just want to see all of my blogs on one page to be able to simply find some to edit ( I write poetry on mine )
Do you have a way of manipulating the blog so it can do this?
50 blogs per page? 100? 150?
If you can I would love you.
Re: Eileen/Blog page layout:
"...This article was inspired by an efriend of mine, when myspace made some changes which messed up her customized blog. (It messed up a lot more than I originally thought, and I am having 2nd thoughts about my suggestion to just use their customizing features.)"
^^ Agreed - and I love what you did for my blog page - it is beautiful! Thank you again... so much. Excellent layout.
~Cx
Okay, before i just... break my computer monitor lol. I decided to come to the all-powerful myspace guru. Haha. =]
Well. I have one of those little layout myspace sites. Or i'm trying to get it started. but when i enter the code into my blog and put either the plaintext code. or the text area code. somethign always goes wrong with it.
The plaintext code either doesn't cut off even after i put the / in the < > (those things... what are called btw? are they just less than or greater than signs in HTML terms?)
And when i use the text area code. it cuts out my style tags, some otehr codes. and instead of leaving the symbols as what they are. it turns it into code asweel.
eg= & [& amps ;] without the spaces of course.
so what do i do? to get my code to come up fully ?
Thanks in advance. =]
I have never put code into a myspace blog.
I just tried, and myspace trashed it.
They turn ascii into tags, and then decide to not accept the tags.
It is sort of weird.
You can get a free blogger account.
It is easy to post code on blogger.
you can use this tool:
Tool for formatting source code for blogger
It didn't work in the myspace blog, I tried it.
I have seen code on people's pages, but not on their blogs.
If you know of a blog that has source code on it, I can go look and see what they did.
um Do you know how to Have a Whole Bunch oF Blog But in Different Page?
So if someone click it they only see ONE of my blog and not all of them?
Email me if you know how
stvex_2003@yahoo.com
Thanx!
stvex
I am not exactly sure what you are asking.
Do you mean, if someone clicks on "view all blog entries", they do not see all of your blogs?
I don't know if there is a limit, because none of my test pages have more than a few blogs.
okay, i have a question.
I am new to making a lyt site.
And i still don't' get what i
have to do;
I can make the lyts, but i am
not sure how to get the codes into
my blogs. And how to make my
site look like most lyt sites.
If you could help me that would
be greatt.
myspace.com/tif2012
[thats my personal site.]
tiffy
When you say you "make layouts" what do you mean?
Do you mean that you understand the myspace core code and how to manipulate it and change style?
Or, do you use a layout generator to create the layouts, and then just want to put the code on your site?
How much do you know?
If I know this, I will have a better idea of what to tell you.
Hey,
I suppose I'm asking you/someone for a favor...anyways; I'm trying to figure out a way to hide/remove/delete the SIDEBAR MODULE on my space's blog page.
i.e the tables w/ pics and personal info. i'd like my blog and just my blog to show on my blog page, as im trying to fit my blog page into an iframe @ my site
thebish.info
thanks,
bishop.
fl4shlight@Hotmail.com
I am curious about the opposite of what mattew bishop is wanting to know in a way.... I would like to know how to put the information he wants removed into a layer that sits directly on top of where it was and doesnt move when the readable part of the blog moves....I tried at it for about 4 hours looking through material all over the place and trying TONS of stuff lol...any help is greatly appreciated! :P
Thanks!
Ve Depo
I was able to get alittle further in another couple minutes playing around with it...
Matthew... I believe that
div class="table.profile"
table style="width: 450px;
height: 278px;
cellpadding: 0px;
cellspacing: 0px;
border: 0px;"
/table/div
in you header and
table.profile {font-size:1px !important;}
table.profile {
position:absolute; left:550px;
top:337px; margin-left:-150px;
z-index:1;}
table.profile {width:315px !important; height:140px !important;
table.profile {visibility:hidden; border:0px !important;}
In your CSS should put you close to the answer your looking for it will let you play around with the "profile" portion of the blog...keep in mind you will need to retag those in the header since this comment box wont let me put in tags
As for me Im still looking for a way to get the DIV outside of my SPAN...its probly elementary but heres my URL
http://blog.myspace.com/index.cfm?fuseaction=blog.ListAll&friendID=58838866
what I posted for matthew above is what Im currently close to for what Im using
Thanks again
Ve Depo
I solved my problem.... just to let ya know matthew, when you put the stuff I told you about in your CSS just put "hidden" for the visability on those "table.profile" and it should solve ur problem
I'm kind of new at this. I was wondering if someone could tell me two things.
1] How to make the sidebar in my myspace blog wider.
2] How to make my blog transparent, and control that transparency level.
I really appreciate any help-thanks!
L
I want to cover up EVERYTHING on my page and start over. I've seen the code before so I know there's a way, and I DO know a lot about all of this (HTML, CSS) and well if someone could help, let me know, 'cos right now my page is a mess! So thanks if you can.
HI,
Great page you have. I have a question and I a not sure if you can help. I have made a list menu on the blog page, every thing work perfectly on my testing server but just not on myspace. The "display:inline;" statement does not make the list run horizontally. You would'nt have any idea as to why?
page in question.
http://blog.myspace.com/index.cfm?fuseaction=blog&pop=1&ping=1
Thank you for your time.
hide the myspace banners on your blog using this code:
div{display:none;}
Hi Eileen,
is it possible to get the Myspace-Blog and the Dates back on this type of layout?
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=378652475
Thanks in advance, Daniel
It would be cool if you could put definitions for what all the pieces of codes do.
hi
very informative blog.
recommend others.
tks
hi eileen,
probably a simple question...
i want my bottom links NOT underlined
is there a code for that???
if not i will hide it
this is my page: http://blog.myspace.com/index.cfm?fuseaction=blog.view&friendID=389939660&blogID=454010200
thanks :)
Is there a way to hide a certain blog, but not others? Thank you!
Posted Date on Myspace Blog
I can't find the code to hide it.
The posted date is on the very top of the blog. I can choose the format and how it is aligned, but I can't find the CSS style sheet code that will move it or hide it or edit it.
PLEASE HELP!!!!
Post a Comment
Due to Excessive Spam, I have turned on comment moderation.
Links to this post:
Create a Link
<< Home