<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-36806616</atom:id><lastBuildDate>Thu, 26 Nov 2009 11:46:17 +0000</lastBuildDate><title>Views Under Construction</title><description></description><link>http://views-under-construction.blogspot.com/</link><managingEditor>noreply@blogger.com (u∃∃l!∃)</managingEditor><generator>Blogger</generator><openSearch:totalResults>97</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-7704273498956577137</guid><pubDate>Sun, 15 Mar 2009 16:53:00 +0000</pubDate><atom:updated>2009-03-15T10:11:32.870-07:00</atom:updated><title>myspace 2.0 show only last comment</title><description>&lt;h1&gt;Show only Last Comment in Myspace 2.0&lt;/h1&gt;&lt;br /&gt;&lt;span class="myNoteL"&gt;I highly recommend upgrading to myspace 2.0.  This task, and most others, are so much easier in myspace 2.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Place the following code in the CSS area of Customize Profile:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! show only most recent comment code by Eileen xiii.us !}&lt;br /&gt;div.commentsModule div.moduleBody ul.moduleList li {display:none;}&lt;br /&gt;div.commentsModule div.moduleBody ul.moduleList li:first-child {display:block}&lt;br /&gt;.i {display:none;}&lt;br /&gt;{! end code to show only most recent comment !} &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;If you found my code useful&lt;/b&gt;, you can help others who search for this solution in google, by adding the following block to your about me or interests area.&lt;br /&gt;This will not show a visible link on your myspace page, it will only be visible to those who read your code. &lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/ms1/&amp;quot;&amp;gt;myspace 2.0 show only last comment&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you want to show fewer then 50 comments, but show more then one, it is a bit trickier.&lt;br /&gt;Myspace removes any attempt to use the &lt;b&gt;+&lt;/b&gt; within the css area, which would have been idea for this task.&lt;br /&gt;IE does not recognize the nth child selector and most people use IE.&lt;br /&gt;&lt;br /&gt;If you want to show X pixels worth of comments, that is easy.&lt;br /&gt;This is still superior to the similar technique used in myspace 1.0 because we can really start measuring at the top of the actual comments, eliminating the need to know the height of anything above the actual comments.&lt;br /&gt;&lt;br /&gt;The following code will show 200px worth of actual comments (not including any of the headers).&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! show fewer then 50 comments code by Eileen xiii.us !}&lt;br /&gt;div.commentsModule div.moduleBody ul.moduleList {height:200px; overflow:hidden;} &lt;br /&gt;.i {display:none;}&lt;br /&gt;{! end code to show only most recent comment !} &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Change the &lt;b&gt;200&lt;/b&gt; to the px height of comments you want to show.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-7704273498956577137?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/03/myspace-20-show-only-last-comment.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>6</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-3271481033823497719</guid><pubDate>Sun, 15 Mar 2009 03:05:00 +0000</pubDate><atom:updated>2009-03-14T20:35:58.093-07:00</atom:updated><title>myspace 2.0 friends in scroll box</title><description>&lt;h1&gt;MySpace 2.0 put Friends In Scroll Box&lt;/h1&gt;&lt;br /&gt;&lt;br /&gt;This is way easier then myspace 1.0, and you do not have to put friends and comments in the same scroll box.&lt;br /&gt;&lt;br /&gt;To put ONLY the friends in a scroll box, use one of the following blocks of code.&lt;br /&gt;One puts only the friends in, leaving out the header and links.&lt;br /&gt;&lt;br /&gt;The others include the header and/or links.&lt;br /&gt;&lt;br /&gt;Change the height value, to the height you want your scroll box.&lt;br /&gt;&lt;br /&gt;The code goes into the css area:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Friends in Scroll Box Code by Eileen xiii.us !}&lt;br /&gt;div.friendSpaceModule div.moduleBody ol.moduleList{&lt;br /&gt;height:60px;  &lt;br /&gt;overflow:scroll; &lt;br /&gt;overflow-x:hidden;} &lt;br /&gt;{! end Friends in Scroll Box !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;If you want to include the " .. Has X Friend" and the links; inside the scroll box (instead of outside the scroll box) but do NOT want to include the section header&lt;br /&gt;(the "Friend Space (Top X)")&lt;br /&gt;Use this code:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Friends in Scroll Box Code by Eileen xiii.us !}&lt;br /&gt;div.wrap div.friendSpaceModule div.moduleBody{&lt;br /&gt;height:60px;  &lt;br /&gt;overflow:scroll; &lt;br /&gt;overflow-x:hidden;} &lt;br /&gt;{! end Friends in Scroll Box !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;If you want to include the Section header as well, inside the scroll box, use the following code instead:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Friends in Scroll Box Code by Eileen xiii.us !}&lt;br /&gt;div.wrap div.friendSpaceModule {&lt;br /&gt;height:60px;  &lt;br /&gt;overflow:scroll; &lt;br /&gt;overflow-x:hidden;} &lt;br /&gt;{! end Friends in Scroll Box !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;If you found my code useful&lt;/b&gt;, you can help me by adding the following block to your about me or interests area.&lt;br /&gt;This will not show a visible link on your myspace page, it will only be visible to those who read your code.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/ms1/&amp;quot;&amp;gt;myspace 2.0 friends in scroll box&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-3271481033823497719?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/03/myspace-20-friends-in-scroll-box.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>5</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-604910537923506275</guid><pubDate>Sun, 15 Mar 2009 00:25:00 +0000</pubDate><atom:updated>2009-03-18T11:57:22.187-07:00</atom:updated><title>mySpace 2.0 put comments in scroll box</title><description>&lt;h1&gt;myspace 2.0 comments in scroll box&lt;/h1&gt;&lt;br /&gt;&lt;span class=mynoteL&gt;I highly recommend upgrading to myspace 2.0, it is MUCH easier to customize than myspace 1.0.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I only want to scroll the actual comments, not the header, or the text that says "displaying X of Y comments" or the "View All" and "Add Comment" link.&lt;br /&gt;&lt;br /&gt;Put the code into the CSS area.  &lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Scroll Comments code by Eileen xiii.us !}&lt;br /&gt;div.commentsModule div.moduleBody ul.moduleList {&lt;br /&gt;height:60px; &lt;br /&gt;overflow:scroll; &lt;br /&gt;overflow-x:hidden;} &lt;br /&gt;div.wrap .i {display:none;}&lt;br /&gt;{! END Scroll Comments code !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;b&gt;Change the 60 to the height you want to use for your scroll box&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If you want to put the "displaying X of Y comments" and the "View All" and "Add Comment" links in your scroll box, then use the following:Put the code into the CSS area.  &lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Scroll Comments code by Eileen xiii.us !}&lt;br /&gt;div.wrap div.commentsModule div.moduleBody {&lt;br /&gt;height:60px; &lt;br /&gt;overflow:scroll; &lt;br /&gt;overflow-x:hidden;}&lt;br /&gt;div.wrap .i {display:none;} &lt;br /&gt;{! END Scroll Comments code !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;b&gt;Change the 60 to the height you want to use for your scroll box&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If you want to include the &lt;b&gt;Comments&lt;/b&gt; header as well, then use the following code:&lt;pre class="source-code"&gt;&lt;code&gt;{! Scroll Comments code by Eileen xiii.us !}&lt;br /&gt;div.wrap div.commentsModule {&lt;br /&gt;height:60px; &lt;br /&gt;overflow:scroll; &lt;br /&gt;overflow-x:hidden;}&lt;br /&gt;div.wrap .i {display:none;} &lt;br /&gt;{! END Scroll Comments code !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;b&gt;Change the 60 to the height you want to use for your scroll box&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;If you found my code useful&lt;/b&gt;, you can help me by adding the following block to your about me or interests area.&lt;br /&gt;This will not show a visible link on your myspace page, it will only be visible to those who read your code.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/ms1/&amp;quot;&amp;gt;myspace 2.0 comments in scroll box&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-604910537923506275?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/03/myspace-20-put-comments-in-scroll-box.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>18</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-4056625226223812442</guid><pubDate>Sat, 14 Mar 2009 19:07:00 +0000</pubDate><atom:updated>2009-03-29T14:46:10.589-07:00</atom:updated><title>myspace 2.0 Customize Blurbs Section</title><description>&lt;span class="subLink"&gt;&lt;A NAME="Info1"&gt;Explanation of Blurb Table Location and Structure&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Please refer to the following myspace page to see how this table is structured.&lt;br /&gt;This is a real myspace page, with style code added to show the parent relationships, laying, classes, and other attributes which can be used to manipulate the blurbs div.&lt;br /&gt;&lt;a href="http://www.myspace.com/blurbs2" target="_new"&gt;Regular MySpace Page Showing Structure, Layout, Classes&lt;/a&gt;&lt;br /&gt;The link will try to open into a new window.  This allows you to view the key on this page, while viewing the above myspace page, at the same time (in different windows).&lt;br /&gt;&lt;br /&gt;Key to the above page:&lt;br /&gt;&lt;div class=key&gt;&lt;div class=blurbsModule&gt;div.blurbsModule&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;a href=""&gt; a (link) no class assigned &lt;/a&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;span&gt; span no class assigned &lt;/span&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;a class="xclass" id="xid"&gt;a (link) has unknown class or id&lt;/a&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div&gt;div no class assigned&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=key&gt;&lt;div class="xclass"&gt;div has unknown class&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div id="xid2"&gt;div has unknown id&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleTop&gt;div.moduleTop&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleMid&gt;div.moduleMid&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleMid1&gt;div.ModuleMid1&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleMid2&gt;div.moduleMid2&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleBody&gt;div.moduleBody&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleBodyEnd&gt;div.moduleBodyEnd&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleBottom&gt;div.moduleBottom&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=blurbAboutMe&gt;div.blurbAboutMe&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=key&gt;&lt;div class=blurbLikeToMeet&gt;div.blurbLikeToMeet&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;h4&gt;h4&lt;/h4&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;h2&gt;h2&lt;/h2&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;h3&gt;h3&lt;/h3&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class="clearkey"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Using the above key (along with the myspace page the key is applied to) I can then easily figure out the needed code, to customize the blurbs section.&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="removeBH"&gt;Remove Blurb Header and the space it occupies &lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! hide Blurbs header !}&lt;br /&gt;{! code by Eileen; terms of use: xiii.us/tou !}&lt;br /&gt;div.blurbsModule h3 {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="removeAHMH"&gt;Remove About Me and To Meet Headers and the space they occupy &lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! hide About Me and Meet header !}&lt;br /&gt;{! code by Eileen; terms of use: xiii.us/tou !}&lt;br /&gt;div.blurbsModule div.moduleBody h4 {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;If you want to remove ONLY the About Me header and keep the To Meet Header, use the below code instead.&lt;pre class="source-code"&gt;&lt;code&gt;{! hide About Me header !}&lt;br /&gt;{! code by Eileen; terms of use: xiii.us/tou !}&lt;br /&gt;div.blurbsModule div.moduleBody div.blurbAboutMe h4 {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;If you want to remove ONLY the To Meet header, and keep the About Me header, use the below code:&lt;pre class="source-code"&gt;&lt;code&gt;{! hide About Me header !}&lt;br /&gt;{! code by Eileen; terms of use: xiii.us/tou !}&lt;br /&gt;div.blurbsModule div.moduleBody div.blurbLikeToMeet h4 {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="removeHB"&gt;Header Banner for Blurbs Section &lt;/A&gt;&lt;/span&gt;&lt;br /&gt;If I want to place a header banner, in the blurbs, above the blurbs title, I can do this by applying a background image to the div.moduleTop within the blurbs section.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! apply a top banner to blurbs module !}&lt;br /&gt;div.blurbsModule div.moduleTop {&lt;br /&gt;background-image:url(YOUR-URL-HERE);&lt;br /&gt;background-position:center center;&lt;br /&gt;background-repeat:no-repeat;&lt;br /&gt;height:60px;&lt;br /&gt;width:400px;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt; Replace the 60px with the height of your image, and the 400px with the width of your image.&lt;br /&gt;&lt;br /&gt;The above, combined with the code for hiding the existing headers, will leave you with a custom blurbs header, and no other headers.&lt;br /&gt;&lt;br /&gt;Or you can replace the Blurbs header with a Custom Image:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Custom Image as Blurbs header !}&lt;br /&gt;{! code by Eileen; terms of use: xiii.us/tou !}&lt;br /&gt;div.blurbsModule h3 {&lt;br /&gt;background-image:url(YOUR-URL-HERE);&lt;br /&gt;background-position:center top;&lt;br /&gt;background-repeat:no-repeat;&lt;br /&gt;height:60px;&lt;br /&gt;width:400px;}&lt;br /&gt;div.blurbsModule h3 span {display:none;}&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I will add more stuff here later, as I come across specific questions, related to customizing the stuff in this space&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-4056625226223812442?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/03/myspace-20-customize-blurbs-section_14.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-7681535864977984815</guid><pubDate>Thu, 05 Mar 2009 04:12:00 +0000</pubDate><atom:updated>2009-03-29T15:53:29.678-07:00</atom:updated><title>myspace 2.0 div layout (div overlay)</title><description>&lt;h1&gt;myspace 2.0 Div Layout (div overlay) tutorial&lt;/h1&gt;&lt;br /&gt;The term div overlay was adopted due to very early versions of this type of layout, being a literal overlay (it sat over the existing page content and covered it).&lt;br /&gt;&lt;br /&gt;None of my div layouts examples are really overlays.  Instead I remove the existing content that I do not want to show.&lt;br /&gt;I then place what I want to show, on top of my div, or directly under it.&lt;br /&gt;&lt;br /&gt;To get clean positioning, and allow the bottom links to move down naturally as my div grew; I would close off three layers of existing tables before creating my div.&lt;br /&gt;This placed my div outside of most of the existing table structure, while causing a large portion of the default page content to fall logically inside my div, making it very easy to position this content in the correct location on my div.  &lt;br /&gt;&lt;br /&gt;Now that myspace is filtering out code, that closes structures without first opening them, this strategy no longer works.&lt;br /&gt;&lt;br /&gt;Rather then come up with a new strategy for myspace 1.0, instead I am recommending that people just upgrade to myspace 2.0.&lt;br /&gt;&lt;br /&gt;Below is my preliminary write up for a strategy that works very well with 2.0.&lt;br /&gt;&lt;br /&gt;I don't have time to get this article all nicely formatted right now, so I will just publish the steps, I used, as I built my prototype.&lt;br /&gt;&lt;br /&gt;===================Start Instructions for Div Layout/Div Overlay in Myspace 2.0 ====&lt;br /&gt;&lt;br /&gt;Installing a Div Overlay in 2.0&lt;br /&gt;&lt;br /&gt;This is MUCH easier then it was with Version 1, and requires much less code.&lt;br /&gt;&lt;br /&gt;Select "Customize Profile" from the Profile menu&lt;br /&gt;Select "Change Layout"&lt;br /&gt;Select the layout, that looks like this:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i287.photobucket.com/albums/ll142/mpskin/0lo/layout-1col-th.png"&gt;&lt;br /&gt;&lt;br /&gt;Next select &lt;br /&gt;"Modules" &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hide all modules that you do not want to show on your div overlay.&lt;br /&gt;do NOT hide your blurbs, we are going to use this for our content, we will hide the blurb headers, in a later step.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In my example I hid all of the sections except the &lt;br /&gt;blurbs&lt;br /&gt;comments&lt;br /&gt;music player&lt;br /&gt;friends&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Notice that the top area (where your profile image, contact links, online, mood, status, headline reside) can not be hidden using the "Modules" function.  &lt;br /&gt;&lt;br /&gt;However, we can hide all of it, or elements within it using CSS.&lt;br /&gt;[note: You may opt to not show some personal information such as age, last login.  If you choose this the word "private" will show next to the header for that content.  We will hide this later.]&lt;br /&gt;&lt;br /&gt;Now drag the blurbs to the top (if they are not already there), placing them just below the top area.&lt;br /&gt;&lt;br /&gt;Although the core of our content will go into the blurbs, we will use a higher level element for our positioning.&lt;br /&gt;&lt;br /&gt;I will use div.contentMid2. This is the inner most div, which includes all of the content, I want to use, within my div overlay, including the top area, which they now call the "Basic Information Module".&lt;br /&gt;&lt;br /&gt;To get an idea of where this div lays, in relation to the other elements, go here:&lt;br /&gt;&lt;a href="http://xiii.us/msClass/getTags.php"&gt;Page showing div layers, classes, ids of myspace 2.0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It is the thick silver solid border, notice it includes the area with the thick purple border (the top profile info area) AND the thick hot pink dashed bordered area, which contains the rest of the profile content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This also allows me to use div.contentMid and div.contentMid1, to create interesting background looks, such as framing. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Hidding additional Elements:&lt;/b&gt;&lt;br /&gt;We will do this in the css section.&lt;br /&gt;To get to the css section select  &lt;b&gt;{} CSS&lt;/b&gt;&lt;br /&gt;An edit box will show up, that you can enter CSS in.  &lt;br /&gt;Enter only the lines, for the stuff you want to hide.&lt;br /&gt;I HIGHLY recommend including the comment, I provide, with each line.  This will make it much easier for you to alter your code later.&lt;br /&gt;&lt;br /&gt;Before placing the below code into your css area, please add this:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! Hiding elements to prepare for Div Layout, code By Eileen !}&lt;br /&gt;{! for terms of use please see xiii.us/tou !}&lt;br /&gt;{! http://xiii.us/tou !}&lt;br /&gt;{! views-under-construction.blogspot.com !}&lt;br /&gt;{! http://xiii.us/ !}&lt;br /&gt;.i {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;If you use the above code block, none of my credits will show up on your visible myspace page.  However, I do require that my credits stay with my code. &lt;br /&gt;&lt;br /&gt;To hide the People you may Know (which recently showed up, sometime in March)&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide people you may know !}&lt;br /&gt;div#module-1 {display:none;}&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;To hide the ENTIRE top section use this:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! Hide Basic Information Module !}&lt;br /&gt;div.basicInfoModule {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;OR&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! Hide EVERYTHING in the Basic Info Module EXCEPT the profile Image !}&lt;br /&gt;div.basicInfoDetails {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;Now you can still hide the profile image like this:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide profile image !}&lt;br /&gt;div.photo {display:none}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;You may instead choose to hide individual components within this space.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! Hide Name !}&lt;br /&gt;div.basicInfoDetails h2 {display:none;}&lt;br /&gt;&lt;br /&gt;{! Hide contact Links !}&lt;br /&gt;ul.contactLinks {display:none;} &lt;br /&gt;&lt;br /&gt;{! Hide url !}&lt;br /&gt;span.urlLink {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide headline OR mood and status !}&lt;br /&gt;div.basicInfoModule blockquote p {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide status !}&lt;br /&gt;span.status {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide mood !}&lt;br /&gt;span.mood {display:none; }&lt;br /&gt;&lt;br /&gt;{! hide the View My: photos Videos !}&lt;br /&gt;div.pageLinks {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide only the words "View My:" !}&lt;br /&gt;div.pageLinks em {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide pictures link; also hides Video link if Blogs are Hidden !}&lt;br /&gt;div.pageLinks li.odd {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide only the blogs link IF blogs are hidden!}&lt;br /&gt;div.pageLinks li.even {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide only videos link !}&lt;br /&gt;div.pageLinks li.last {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;To hide the entire section, that contains the age, gender, location, last login, online icon, use the following&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide age, gender, location, last login, online !}&lt;br /&gt;ul.profileUserInfo {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;The above hides the title to the information as well.  &lt;br /&gt;IF you do not want this information viewable, with style turned off, you can hide some of these elements using the edit profile tool.  However, this tool only hides the information, it does leave text on your profile, indicating the information is private.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To hide only specific elements within this section:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide Age AND Gender AND the slash between them !}&lt;br /&gt;li.tags {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide Age !}&lt;br /&gt;span.age {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide gender !}&lt;br /&gt;span.gender {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide location !}&lt;br /&gt;li#adr {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide last login !}&lt;br /&gt;li.lastlogin {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide online icon !}&lt;br /&gt;ul.profileUserInfo li img.ImgOnlineNow {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide those images, that show up under the contact links !}&lt;br /&gt;ul.profileUserAlbum {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;-------------------------&lt;br /&gt;Because I want to import the top area content, into my div overlay, I am instead going to assign it position absolute.&lt;br /&gt;I will add in the actual position values later.  &lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! default image !}&lt;br /&gt;div.photo {background-color:transparent; position:absolute}&lt;br /&gt;{! display name !}&lt;br /&gt;div.basicInfoDetails h2 {position:absolute;}&lt;br /&gt;&lt;br /&gt;ul.contactLinks {position:absolute;}&lt;br /&gt;span.urlLink {position:absolute;}&lt;br /&gt;&lt;br /&gt;{! status !}&lt;br /&gt;span.status {position:absolute;}&lt;br /&gt;&lt;br /&gt;{! mood !}&lt;br /&gt;span.mood {position:absolute; }&lt;br /&gt;&lt;br /&gt;{!  View My: photos Videos !}&lt;br /&gt;div.pageLinks {position:absolute;}&lt;br /&gt;&lt;br /&gt;{! hide only the words "View My:" !}&lt;br /&gt;div.pageLinks em {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;---------------------&lt;br /&gt;Now we will hide the header text in the blurbs section, so we can use that section for our custom content.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide blurbs header !}&lt;br /&gt;div.blurbsModule h3 {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide about me header !}&lt;br /&gt;div.blurbAboutMe h4 {display:none;}&lt;br /&gt;&lt;br /&gt;{! hide entire meet section !}&lt;br /&gt;div.blurbLikeToMeet {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;OR choose to use this section and hide only the header&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide Meet Header !}&lt;br /&gt;div.blurbLikeToMeet h4 {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;--------------------&lt;br /&gt;Unless you choose to hide, the entire top area, you likely have a lot of extra space above your blurbs. This is caused by a combination of padding and min-height settings, used for the elements we removed content from, without actually removing the whole element.&lt;br /&gt;--------------------&lt;br /&gt;The next block of code, removes this extra space, placing the blurbs directly under the top menu, and in the very top left corner of div.contentMid2.&lt;br /&gt;&lt;br /&gt;There are ways to do something very similar, that use far less code.  &lt;br /&gt;One could use a negative top margin OR position:relative, to accomplish very close to the same positioning.  But there are likely to be alignment issues, across different browsers and resolutions.&lt;br /&gt;&lt;br /&gt;IF your div is a static known size, you could use position:absolute, to place the blurbs exactly into the top corner of the div.contentMid2.&lt;br /&gt;In this case, you would assign a known height to div.contentMid2, so that when the blurbs are positioning absolute, the bottom links do not move up.&lt;br /&gt;&lt;br /&gt;However, &lt;br /&gt;I am going to avoid using position absolute for either the blurbs OR div.contentMid2.&lt;br /&gt;I want to allow the bottom links, to naturally move down, based on the size of the content inside our div.  &lt;br /&gt;&lt;br /&gt;I also want to place the comments at the bottom, and without using a scroll box for them.&lt;br /&gt;I want my bottom links to move down.&lt;br /&gt;For this reason, I can NOT assign a set height to my div.contentMid2.&lt;br /&gt;&lt;br /&gt;So I am going to use a block of code, that serves to reverse the style, that is causing this extra space.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! myspace 2.0 div layout preparation code by Eileen xiii.us/tou !}&lt;br /&gt;{! remove extra space caused by padding, margins, min-height settings !}&lt;br /&gt;div.basicInfoDetails {min-height:0px; padding:0px;}&lt;br /&gt;div.profileDemographics {min-height:0px; padding:0px; height:0px; width:0px;}&lt;br /&gt;div.basicInfoModule {margin:0px;  height:0px; padding:0px; min-height:0px; }&lt;br /&gt;div.basicInfoModule div.moduleBody {height:0px; min-height:0px; margin-top:0px; margin:0px; padding:0px; }&lt;br /&gt;div.contentMid2 {padding:0px;}&lt;br /&gt;&lt;br /&gt;{! override default padding in blurbs module !}&lt;br /&gt;div.blurbsModule {margin:0px; padding:0px}&lt;br /&gt;div.blurbsModule div.moduleBody, div.blurbsModule div.moduleMid{padding:0px;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;----------------------------------------------------&lt;br /&gt;Now I need to assign a position statement, to div.contentMid2.  The purpose of this statement is to cause this div, to act as the reference point, for the page elements, I want to import into my div.&lt;br /&gt;Because these elements, reside logically inside div.contentMid2, they can be positioned, measuring from the top left corner of this div.  &lt;br /&gt;I find this more accurate, cross platform, then trying to position from the top center of the body.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! myspace 2.0 div layout preparation code by Eileen xiii.us/tou !}&lt;br /&gt;{!!! Cause any absolute positioning, to position relative to div.contentMid2 !!!}&lt;br /&gt;div.contentMid2 {position:relative;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Now the top left corner of our custom div area, and the top left corner of div.contentMid2, are in exactly the same position.&lt;br /&gt;&lt;br /&gt;(I put a magenta border around my core div, so that I can see exactly where its boundaries are.  I usually leave this there until I am done building the div.  It helps with trouble shooting if things do not place correctly.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;---------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;NOTE: IF your content area (core div) is wider then 800px, you will need to add code to accomodate this.  The myspace default sizing needs to be overridden at multiple levels.&lt;br /&gt;I am using a width of 920px&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! set width of my core div, and surrounding divs !}&lt;br /&gt;div.wrap, div#row1, div.contentMid2, div.contentMid, div.contentMid1, div.myCoreDiv  {width:920px;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;NOTE: IF you want to keep the top area (ad/search/menu) a width that is less wide then your core div, you will need additional code to accomodate this.  Because of the padding the myspace has applied to the google search area, notice I have set it to width LESS then the width I am using for the top area.  I could have removed the padding instead, but this looked slightly better.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! control width of top area, when making the rest of the page wider !}&lt;br /&gt;div.globalWidth, div#leaderboard {width:800px; max-width:800px; }&lt;br /&gt;div#googlebar {width:770px}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;----------&lt;br /&gt;At this point, any default page content, that you want to import into your custom div, should be on your visible page, below your blurbs.&lt;br /&gt;[Although your blurbs are hidden, they should be just under the top menu.]&lt;br /&gt;&lt;br /&gt;The one exception to this, is any content from the top section (BasicInfo/ProfileInfo area).  &lt;br /&gt;If you assigned position:absolute to these elements, they will be sitting, overlapping the top of your blurbs. &lt;br /&gt;Otherwise, they will be above your blurbs.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-----------------------------------------------&lt;br /&gt;&lt;br /&gt;NEXT we start building our custom div in our blurbs section.&lt;br /&gt;&lt;br /&gt;Go to &lt;br /&gt;Profile -&gt; Edit Profile&lt;br /&gt;&lt;br /&gt;Click on "About Me"&lt;br /&gt;&lt;br /&gt;In the About Me box start your div&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/v/&amp;quot;&amp;gt;myspace 2.0 Div overlay code/tutorial by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;div class=&amp;quot;myCoreDiv&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;put your div content here&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;----&lt;br /&gt;&lt;br /&gt;Now save&lt;br /&gt;&lt;br /&gt;(I put a magenta border around my core div, so that I can see exactly where its boundaries are.  I usually leave this there until I am done building the div.  It helps with trouble shooting if things do not place correctly.)&lt;br /&gt;&lt;br /&gt;You can put the border, around your div, by adding this to the css section:&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;div.myCoreDiv {border:2px magenta groove}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;----&lt;br /&gt;&lt;br /&gt;The first kind of div I am going to do is a very simple "Core Image" type div.&lt;br /&gt;For this I use a core image, that I draw using a draw tool  (I use paintshop).&lt;br /&gt;&lt;br /&gt;I am using the image found here:&lt;br /&gt;&lt;br /&gt;http://i287.photobucket.com/albums/ll142/mpskin/0layouts/madeline/madeline-house-front.png&lt;br /&gt;&lt;br /&gt;This is what I will call my core image.&lt;br /&gt;&lt;br /&gt;I will place the image in my core div.&lt;br /&gt;&lt;br /&gt;I now have this code in my about me section:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;div class=&amp;quot;myCoreDiv&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;img src=&amp;quot;http://i287.photobucket.com/albums/ll142/mpskin/0layouts/madeline/madeline-house-front.png&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;------&lt;br /&gt;Now we need some style for our div.  I am going to add a border, you do not have to do this.&lt;br /&gt;I am also going to add a text-align command, to cause my core image to center.&lt;br /&gt;&lt;br /&gt;Code I now place in the css area:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;div.myCoreDiv {border:3px magenta groove; text-align:center;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;---&lt;br /&gt;Anything you did not hide, from the top area, will now show ON TOP OF your core image.  We will place it in its desired location later.&lt;br /&gt;Anything else you did not hide, will show BELOW your core image.  We will move these elements onto our div as well.&lt;br /&gt;&lt;br /&gt;I have left spaces, on my core image, to place my content.&lt;br /&gt;Now we are going to import the content we want to show, onto the div.&lt;br /&gt;&lt;br /&gt;First the Name.&lt;br /&gt;&lt;br /&gt;The name is adressed like this:&lt;br /&gt;div.basicInfoDetails h2&lt;br /&gt;&lt;br /&gt;I am going to add a top value, and a left value, width, and text-align.&lt;br /&gt;I want the name to center in the top left section of the top left window, on my image.&lt;br /&gt;To insure this, I am going to set the width of the name, to the length of that window section.&lt;br /&gt;&lt;br /&gt;width:200px;&lt;br /&gt;&lt;br /&gt;I will then add text-align so that the name centers within this space&lt;br /&gt;text-align:center;&lt;br /&gt;&lt;br /&gt;Then I will position the element, in the top left corner of the window, measuring from the top left corner of my core div.&lt;br /&gt;top:137px; left:68px;&lt;br /&gt;&lt;br /&gt;I end up with this:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;div.basicInfoDetails h2 {width:200px; text-align:center; position:absolute; top:137px; left:68px;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;------&lt;br /&gt;&lt;br /&gt;Now for the photo&lt;br /&gt;I want the photo to center under the name, so I will use the same concept.&lt;br /&gt;I will size the element that holds the photo, div.photo, the length of the window section, and use text align to cause the photo to center in that space.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;div.photo {width:200px; text-align:center; position:absolute; top:160px; left:68px;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;----&lt;br /&gt;Next I will place my contact links.&lt;br /&gt;&lt;br /&gt;This will position the contact links:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;ul.contactLinks {float:none; position:absolute; top:150px; left:290px; width:150px; height:90px;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;It is important to set the width, as the default width is actually much wider then the links themselves takes up.&lt;br /&gt;I used the above size, because I am about to add a custom contact table, which uses the above size.&lt;br /&gt;To do this, I also need to space my links, within this space.&lt;br /&gt;&lt;br /&gt;To get a custom contact table you can go here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/ctSkin.php"&gt;custom contact tables myspace 2.0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This will also allow you to enter a custom image, to use for your contact table.&lt;br /&gt;&lt;br /&gt;Make sure you check this&lt;br /&gt;  - I have used position absolute to position my contact table&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;Next I will place the pictures and video links (and possibly the blogs link)&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;div.pageLinks {position:absolute; top:264px; left:290px; width:150px; background-color:mistyrose; color:purple; font-family:comic sans ms; font-size:13px;}&lt;br /&gt;{! position picture link !}&lt;br /&gt;div.pageLinks li.odd {float:left; padding-left:13px;}&lt;br /&gt;{! position video link which may also be odd depending on blogs link !}&lt;br /&gt;div.pageLinks li.last {float:right; padding-right:13px;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;This should be enough for you to get the idea of how to do this, I may add more information later, if I have time, and people want me to&lt;/b&gt;&lt;br /&gt;I will probably clean this up when I have more time, so it is easier to read.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-7681535864977984815?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/03/myspace-20-div-layout-div-overlay.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>52</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-6618730624562822768</guid><pubDate>Tue, 24 Feb 2009 23:57:00 +0000</pubDate><atom:updated>2009-03-22T11:03:32.732-07:00</atom:updated><title>myspace 2.0  BasicInfoDetails Profile Info area</title><description>&lt;h1&gt;Hiding The content in the Basic Info/Profile Info area of the MySpace 2.0 Profile&lt;/h1&gt;&lt;br /&gt;This content can NOT be hidden using the built in myspace profile Customize/Edit tool.&lt;br /&gt;However, it can be hidden using simple css.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! hide profile image !}&lt;br /&gt;div.photo {display:none}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;To hide the ENTIRE top section use this:&lt;/b&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Hide Basic Information Module !}&lt;br /&gt;div.basicInfoModule {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;OR instead just hide the individual elements within the basic info module:&lt;/b&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Hide Name !}&lt;br /&gt;div.basicInfoDetails h2 {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! Hide contact Links !}&lt;br /&gt;ul.contactLinks {display:none;} &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! Hide url !}&lt;br /&gt;span.urlLink {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide headline OR mood and status !}&lt;br /&gt;div.basicInfoModule blockquote p {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide status !}&lt;br /&gt;span.status {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide mood !}&lt;br /&gt;span.mood {display:none; }&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide only time mood updated !}&lt;br /&gt;div.basicInfoModule div.basicInfoDetails span.date {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide only the mood status view more link !}&lt;br /&gt;div.basicInfoModule div.basicInfoDetails span.view a {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide the View My: photos Videos !}&lt;br /&gt;div.pageLinks {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide only the words &amp;quot;View My:&amp;quot; !}&lt;br /&gt;div.pageLinks em {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide pictures link; also hides Video link if Blogs are Hidden !}&lt;br /&gt;div.pageLinks li.odd {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide only the blogs link IF blogs are hidden!}&lt;br /&gt;div.pageLinks li.even {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! hide only videos link !}&lt;br /&gt;div.pageLinks li.last {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Show a different image on your page, then the image used as your default display picture:&lt;br /&gt;Put this code in the css area of the customize section:&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! Use different images for Display Pic on page, and Default image !}&lt;br /&gt;{! code author:Eileen !}&lt;br /&gt;div.basicInfoModule div.photo {background-image:url(http://i287.photobucket.com/albums/ll142/mpskin/face1.png);&lt;br /&gt;background-repeat:no-repeat;&lt;br /&gt;background-position:center top; width:177px; height:180px;}&lt;br /&gt;div.basicInfoModule div.photo a, .i {display:none;} &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;If you found my code useful&lt;/b&gt;, you can help me by adding the following block to your about me or interests area.&lt;br /&gt;This will not show a visible link on your myspace page, it will only be visible to those who read your code.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/ms1/&amp;quot;&amp;gt;myspace 2.0 Basic Info, Profile Info area&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-6618730624562822768?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/02/myspace-20-basicinfodetails-profile.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>4</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-4297505711196745640</guid><pubDate>Tue, 17 Feb 2009 02:05:00 +0000</pubDate><atom:updated>2009-02-16T18:28:27.107-08:00</atom:updated><title>myspace 2.0 adding a custom section</title><description>&lt;h1&gt;Adding a Custom Section (Div) to myspace 2.0&lt;/h1&gt;&lt;br /&gt;The cleanest way to do this is to create an App, for your section.  However, since this takes more skill then the average myspace user has, I will skip this method and present another method.&lt;br /&gt;&lt;br /&gt;This is not that different from how it was done in myspace 1.0, conceptually it is very much the same, and in many ways easier.&lt;br /&gt;&lt;br /&gt;First create your desired section inside either your interests OR blurbs section.&lt;br /&gt;Do not add any style into this section, just html (and no inline style inside the tags).&lt;br /&gt;&lt;br /&gt;Your open and close tags must map up (this is a new edit rule introduced with myspace 2.0).&lt;br /&gt;&lt;br /&gt;&lt;b&gt;First I create my custom Div in my Blurbs (or Interests) section&lt;/b&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;i class=i&amp;gt;START CODE to to create custom div&lt;br /&gt;Code Author:Eileen; for terms of use see page:&lt;br /&gt;&amp;lt;a href=&amp;quot;http://xiii.us/v/&amp;quot;&amp;gt;MySpace 2.0 Code by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a href=&amp;quot;http://xiii.us/eGen/mpSkin.php&amp;quot;&amp;gt; Music Player Skins&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;/i&amp;gt; &lt;br /&gt;&amp;lt;div class=&amp;quot;myidiv1&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;Custom Div Content Here&lt;br /&gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;i class=i&amp;gt;END Custom Div&amp;lt;/i&amp;gt; &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;I place this code at the end of my meet.  This code could go anywhere in my blurbs.&lt;br /&gt;If you save at this point, my links and comments will show.  We will hide those in our next step.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Next we add in the needed style to style and position our custom div&lt;/b&gt;&lt;br /&gt;This code must go into the css area, in the customize profile section.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! style to position custom div myidiv1 !}&lt;br /&gt;.i {display:none;}&lt;br /&gt;{! change the 400 to the height of your div !}&lt;br /&gt;div.column1 {position:relative; &lt;br /&gt;padding-top:400px;}&lt;br /&gt;div.myidiv1 {position:absolute; &lt;br /&gt;top:0px; left:0px; &lt;br /&gt;height:400px; width:100%;&lt;br /&gt;font-size:13px; &lt;br /&gt;color:magenta;&lt;br /&gt;font-weight:bold;&lt;br /&gt;font-family:comic sans ms;}&lt;br /&gt;{! alter above style values as desired !}&lt;br /&gt;{! end style for div myidiv1 !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Of course you can alter the values as desired.&lt;br /&gt;You may also have elements within your div that need style.  That style will also go into this section.&lt;br /&gt;&lt;br /&gt;If you wanted to put this section at the bottom of the right column, you could instead use this style block:&lt;pre class="source-code"&gt;&lt;code&gt;{! style to position custom div myidiv1 !}&lt;br /&gt;.i {display:none;}&lt;br /&gt;{! change the 400 to the height of your div !}&lt;br /&gt;div.column1 {position:relative; &lt;br /&gt;padding-&lt;b&gt;bottom&lt;/b&gt;:400px;}&lt;br /&gt;div.myidiv1 {position:absolute; &lt;br /&gt;&lt;b&gt;bottom&lt;/b&gt;:0px; left:0px; &lt;br /&gt;height:400px; width:100%;&lt;br /&gt;font-size:13px; &lt;br /&gt;color:magenta;&lt;br /&gt;font-weight:bold;&lt;br /&gt;font-family:comic sans ms;}&lt;br /&gt;{! alter above style values as desired !}&lt;br /&gt;{! end style for div myidiv1 !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;If I wanted to put the section between two other sections, within the right column it is slightly more complicated, unless you want the section directly above or under the blurbs.  In this case you could isolate the outer most div of the blurbs, and use that as your positioning reference.&lt;br /&gt;&lt;br /&gt;When deciding where to put the code for your custom div; if possible, choose a section which is in the same column as the area where you want to place this custom section.&lt;br /&gt;&lt;br /&gt;If you are going to place the section somewhere other, then the top or bottom of the same column as the interests or blurbs; accurate positioning is tricky (and subject to easily breaking).&lt;br /&gt;&lt;br /&gt;My example will assume that we want to place the content in the same column as my blurbs.&lt;br /&gt;&lt;br /&gt;I am using the layout that has two columns.&lt;br /&gt;The right column is in class column1  (it has other class names as well, but column1 addresses it uniquely.)&lt;br /&gt;If you are not using the same layout, your column may have a different class.&lt;br /&gt;&lt;br /&gt;I may add more examples later, you can request a specific scenario if you want.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-4297505711196745640?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/02/myspace-20-adding-custom-section.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>23</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-9041323627088098912</guid><pubDate>Thu, 05 Feb 2009 19:39:00 +0000</pubDate><atom:updated>2009-02-05T12:27:52.422-08:00</atom:updated><title>L and L Design and Remodeling</title><description>&lt;h1&gt;L and L Design and Remodeling, Issues with this Contractor&lt;/h1&gt;&lt;br /&gt;I am looking for advice on dealing with a contractor.&lt;br /&gt;&lt;br /&gt;I had floors installed, &lt;br /&gt;744 sq feet of Wilsonart flooring installed by L&amp;L design&amp;Remodeling for $8800 (supposedly a "promotional" price).&lt;br /&gt;&lt;br /&gt;After they installed the floor, I noticed some minor issues, but still paid them.&lt;br /&gt;They were supposed to return, the following Friday, to fix the issues.&lt;br /&gt;&lt;br /&gt;Between the time they left, and the Friday (they were supposed to return) I noticed more issues with the flooring.&lt;br /&gt;&lt;br /&gt;To insure that I was not just being too picky, I had multiple people (not experts, but people with some experience) look at the flooring.&lt;br /&gt;&lt;br /&gt;All agreed that the job was done with poor craftsmanship, while I paid a price that should have been purchasing an expert installation job.&lt;br /&gt;&lt;br /&gt;The contractor failed to show up as scheduled, and I called, and another date was arranged.&lt;br /&gt;The next date came, and at least this time they called me, to indicate they were snowed in and could not show up.&lt;br /&gt;I was told they would call me again that Friday, no call was received.&lt;br /&gt;It has been almost a week.&lt;br /&gt;&lt;br /&gt;I have Aspergers (a mild high functioning autism), and am somewhat phone phobic (probably part of the Aspergers) so this level of conflict and phone calls does exceed my comfort level.  (I did manage to call the sales guy/job supervisor the first time he didn't show up, as my friends sort of pressured me to do this.)&lt;br /&gt;&lt;br /&gt;I was looking to see if the company had an email I could use, to avoid calling.&lt;br /&gt;But all I have is the email of the sales person/job supervisor (who at this point I am not sure I want to deal with anymore).&lt;br /&gt;&lt;br /&gt;I did leave an email for the Wilsonart company who made the flooring, and asked if these problems were normal.  They did have someone contact me, but there was really nothing he could do at this point, but he did want me to keep him informed as to the resolution.&lt;br /&gt;&lt;br /&gt;So I am not sure what to do.&lt;br /&gt;&lt;br /&gt;1) Ignore it, one of my friends doesn't think it is that bad, and that I could just take a mallet to the "bumps" and pound them down.  &lt;br /&gt;&lt;br /&gt;2) Wait until L&amp;L Design &amp; Remodeling has their web site up, so I can contact them (it says it should be up in 7 days).&lt;br /&gt;&lt;br /&gt;3) Have a friend call them for me (I have one who said they will, my other friends are just sort of pressuring me to make the call).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For anyone that knows about installing "floating" floors, on an un-level surface, is this something that is even recommended?&lt;br /&gt;&lt;br /&gt;I told the salesman that I had read that installing floating floors on unlevel surfaces was not recommended.  He insured me that the padding underneath would solve that issue.&lt;br /&gt;&lt;br /&gt;But even the un-level issue, does not account for the gaps between some of the connections that are not over an unlevel area (I can easily slip a piece of paper between some of the planks) or the welts (bumps) at some of the connection points.&lt;br /&gt;&lt;br /&gt;There is also some rather large gaps in some corners, which are filled in with clear caulking.&lt;br /&gt;&lt;br /&gt;In one case instead of going under the baseboard, and leaving the tiny gap for expansion, they went up to the baseboard, and then filled in with clear caulking (and since the boards don't all actually go all the way to the base board, it shows a ragged edge).&lt;br /&gt;This was the issue I noticed right away, that they were going to come back and fix.&lt;br /&gt;&lt;br /&gt;Some images:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i168.photobucket.com/albums/u192/hortonsuess/floor/kitchen-entrance.jpg"&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i168.photobucket.com/albums/u192/hortonsuess/floor/ragged-edge1.png"&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i168.photobucket.com/albums/u192/hortonsuess/floor/warp-up1.png"&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-9041323627088098912?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/02/l-design-remodeling-issues.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>7</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-8772391927130378183</guid><pubDate>Thu, 29 Jan 2009 23:31:00 +0000</pubDate><atom:updated>2009-03-29T18:51:56.579-07:00</atom:updated><title>myspace 2.0 Application Modules Customize Code</title><description>For a diagram showing the classes, and layout, of an application module &lt;br /&gt;&lt;a href="http://www.myspace.com/v2app"&gt;Click Here&lt;/a&gt;&lt;br /&gt;The above link goes to a real myspace page, where I have applied style.&lt;br /&gt;If myspace changes their code, the page should reflect changes.&lt;br /&gt;&lt;br /&gt;Key to the above page:&lt;br /&gt;&lt;div class=key&gt;&lt;div class=mdpapplicationModule&gt;div.&lt;br&gt;mdpapplicationModule&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;a href=""&gt; a (link) no class assigned &lt;/a&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;span&gt;span no class assigned &lt;/span&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;a class="xclass" id="xid"&gt;a (link) has unknown class or id&lt;/a&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;ul class=classX&gt;ul has class or id&lt;/ul&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div&gt;div no class assigned&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=key&gt;&lt;div class="xclass"&gt;div unknown class&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div id="xid2"&gt;div has unknown id&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;ul class=links&gt;ul.links&lt;/ul&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;br /&gt;&lt;div class=moduleTop&gt;div.moduleTop&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleMid&gt;div.moduleMid&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleMid1&gt;div.ModuleMid1&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleMid2&gt;div.moduleMid2&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleBody&gt;div.moduleBody&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleBodyEnd&gt;div.moduleBodyEnd&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=moduleBottom&gt;div.moduleBottom&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;div class=toolbar&gt;div.toolbar&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=key&gt;&lt;div class=toolbarEnd&gt;div.toolbarEnd&lt;/div&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;h4&gt;h4&lt;/h4&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;h2&gt;h2&lt;/h2&gt;&lt;/div&gt;&lt;div class=key&gt;&lt;h3&gt;h3&lt;/h3&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class="clearkey"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-8772391927130378183?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2009/01/myspace-20-application-modules.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-4944336103421200929</guid><pubDate>Fri, 26 Dec 2008 08:04:00 +0000</pubDate><atom:updated>2008-12-26T00:50:10.733-08:00</atom:updated><title>myspace 2.0 skinny profile</title><description>This may be the one task, I have found, that is not easier in myspace 2.0 then it was in version 1.&lt;br /&gt;However, it is still reasonable to do.&lt;br /&gt;&lt;br /&gt;IF you want the profile skinnier then 720px (the width of the ad banner), unless you are willing to keep the entire top area, sized to at least 720px wide, you need to do a "pick up and plop" (otherwise known as absolute positioning) with the top ad banner.&lt;br /&gt;&lt;br /&gt;The following code block makes the profile 550px wide, including the top menu and search area.&lt;br /&gt;&lt;br /&gt;Place this code into the css area of the customizing section (select customize profile from the profile menu, then select css).&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! skinny profile 550px wide code by Eileen !}&lt;br /&gt;ul#rightNav, ul#leftNav {border-right:0px;}&lt;br /&gt;div#leaderboard {position:absolute; top:0px; right:50%; margin-right:-370px}&lt;br /&gt;h2#mslogo.global {display:none}&lt;br /&gt;div.wrap {width:550px; margin-right:auto; margin-left:auto; margin-top:90px;}&lt;br /&gt;div#header {background-color:transparent;}&lt;br /&gt;div#googlebar {background: transparent url(''); width:550px; height:50px; position:relative;  margin-top:-10px;  _margin-top:-15px; margin-right:auto; margin-left:auto; border:3px green dashed;}&lt;br /&gt;form#formSearch_Header { margin-left:auto; margin-right:auto}&lt;br /&gt;div#googlebar div.global  {position:absolute; top:0px; left:36px;}&lt;br /&gt;div#topnav {background:transparent; border:0px; width:550px; }&lt;br /&gt;ul#leftNav li, &lt;br /&gt;ul#rightNav li {background-color:transparent;  width:auto; margin:0px; padding:0px; border:0px;} &lt;br /&gt;ul#leftNav li *, &lt;br /&gt;ul#rightNav li * {color:black; font-size:8px; font-family:comic sans ms; font-weight:bold; margin:0px; padding:0px; border:0px;} &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;I HIGHLY recommend applying a music player skin, or at least resizing the player, to fit into the narrow column.&lt;br /&gt;&lt;br /&gt;You can get the code to resize and/or apply a skin to the music player here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;myspace 2.0 music playlist music player skins, resize, and position player code&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You may also want a skinny contact table, you will find the code for that here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/ctSkin.php"&gt;myspace 2.0 custom contact tables, resize contact table&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-4944336103421200929?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2008/12/myspace-20-skinny-profile.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>7</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-8564296332002237459</guid><pubDate>Thu, 11 Dec 2008 02:28:00 +0000</pubDate><atom:updated>2009-03-15T09:23:02.593-07:00</atom:updated><title>music player myspace 2.0</title><description>&lt;h1&gt;mySpace 2.0 music player&lt;/h1&gt;&lt;br /&gt;&lt;br /&gt;Quick links to subjects in this article:&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A HREF="#Size"&gt;Changing the size of the Player&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A HREF="#Alternatives"&gt;Alternative to hiding the player&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A HREF="#HidePlayer2"&gt;MySpace 2.0 Hide Player While Still Allowing it to Play &lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A HREF="#FixSize"&gt;Is the Bottom or Right Edge of your Player Clipped off or Hidden? Click here for the Fix.&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="Size"&gt;Changing the Size of the Music Player&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;For changing the size of the music player, you can now use my music player skin tool.&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;myspace 2.0 music player skins and code&lt;/a&gt;&lt;br /&gt;If you want to make the player smaller, I recommend using this tool:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;myspace music player, style, size, color, skin, position, playlist or single song player, myspace 2.0 or myspace 1.0&lt;/a&gt;&lt;br /&gt;The templates include&lt;br /&gt;For the single song player:&lt;br /&gt;- on/off button and volume only,  40x51&lt;br /&gt;&lt;br /&gt;For the multi song playlist player:&lt;br /&gt;- 40x40 on/off button only  (volume removed, so hopefully it is high enough and not too high)&lt;br /&gt;- 110W x 42H  on/off button, back/forward buttons and volume&lt;br /&gt;- 295W x 31H (same size as mini player) shows on/off, forward/back, volume.&lt;br /&gt;- 294W x 97H  shows the album image, song name, on/off, forward/back, volume.&lt;br /&gt;- 295W x 295W shows 5 songs in the scroll area, along with a full scroll bar and the playlists link at the bottom.  This is the longest size that works with a custom skin for myspace 1.0, in IE.  Making the player longer exposes a bug in the IE browser, related to the player flash implementation. &lt;br /&gt;&lt;br /&gt;If enough people want another size, I will add a new template.&lt;br /&gt;&lt;br /&gt;Or, you can size it using the below code and altering the height values to meet your needs. &lt;br /&gt;&lt;br /&gt;When sizing the player by only changing the size of the object you get the following effects:&lt;br /&gt;-If the player is sized smaller, some of it is clipped off of the bottom and/or right.&lt;br /&gt;If the player width is sized larger, it stretches (distorts).&lt;br /&gt;However, you can alter the player height, and make it longer, without it distorting.  In this case, it will show additional songs.&lt;br /&gt;&lt;br /&gt;Code for myspace 2.0&lt;br /&gt;Put this code into the css area&lt;br /&gt;Change BOTH 600 values, to the height you want your player to be.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! START size music player code by Eileen !}&lt;br /&gt;div.musicPlayerModule div.moduleBody{height:600px;}&lt;br /&gt;div.musicPlayerModule object[id] {height:600px;} &lt;br /&gt;{! END size music player !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;It takes more code in myspace 1.0 and is much more likely to not work, when myspace makes some slight change. (and I highly recommend upgrading to 2.0)&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;i class=i&amp;gt;START code to Size Music Player.  &lt;br /&gt;Code Author Eileen&amp;lt;/i&amp;gt;&lt;br /&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/eGen/mpSkin.php&amp;quot;&amp;gt;myspace music player customize, skin, size, opacity, position, myspace 2.0, myspace 1.0, playlist, single song player&amp;quot;&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;.i {display:none;}&lt;br /&gt;table table div object {height:600px !important;}&lt;br /&gt;table table table div object,&lt;br /&gt;table table td.text div object,&lt;br /&gt;table div table div {height:auto !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;i class=i&amp;gt;END code to Size Music Player&amp;lt;/i&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;You can put this code into any section that accepts style blocks.&lt;br /&gt;Do not next inside another style block.&lt;br /&gt;Do not remove my link or credit (they will not show up on your visible page).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="Alternatives"&gt;Alternatives to Hiding the Music Player&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I highly recommend against hiding the music player.  Sometimes people use their computer to listen to their own music.  Giving people the option to turn the player off is a very good idea.&lt;br /&gt;&lt;br /&gt;Instead I recommend that you size the player small, and put it in the top or right left corner.&lt;br /&gt;&lt;br /&gt;You will find the code to do that here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php?op=100"&gt; size myspace music player tiny, and put in top corner of page.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="HidePlayer2"&gt;Hiding the player while still allowing it to play&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;If you must hide the player, while keeping the music playing, you can use this code:&lt;br /&gt;Place this code in the css section of the customize profile section:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;div.musicPlayerModule {position:absolute; &lt;br /&gt;top:0px; left:0px; &lt;br /&gt;height:3px; width:1px; &lt;br /&gt;overflow:hidden;}&lt;br /&gt;div#musicPlayer {position:absolute; &lt;br /&gt;top:0px; left:0px; opacity:0.001; &lt;br /&gt;filter:alpha(opacity=0)} &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="FixSize"&gt;Fix issue with some of the player being hidden (caused by myspace default code)&lt;/A&gt;&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;This is caused by a bug that myspace introduced to their code.  I really thought they would have fixed this by now.&lt;br /&gt;&lt;br /&gt;Forcing the size of the player, or the immediate containing 2 divs, does not seem to fix the problem, as it did before.&lt;br /&gt;Due to the way they have sized the columns, it is now necessary to override their column sizing, in order to prevent the right side of the player from being clipped off, if the column is not at least as wide as the player.&lt;br /&gt;&lt;br /&gt;If you increase the size of the left column, you must also decrease the size of the right column, or it will "float" BELOW the left column, instead of beside it.&lt;br /&gt;&lt;br /&gt;If you have the 2 column layout, this code allows the full width of the music player to show correctly:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! adjust column widths to fix music player from having right clipped off !}&lt;br /&gt;{! code author Eileen !}&lt;br /&gt;div.wrap div.profileLayout div.column0 {width:300px;}&lt;br /&gt;div.wrap div.profileLayout div.column1 {width:400px;}&lt;br /&gt;{! adjust above width values so that sum is not greater then width of profile !}&lt;br /&gt;{! end code to adjust column widths !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you are not using the same 2 column layout I used, you may have different class values for the effected columns.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-8564296332002237459?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2008/12/music-player-myspace-20.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>17</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-5068261054799408375</guid><pubDate>Fri, 21 Nov 2008 01:59:00 +0000</pubDate><atom:updated>2009-02-16T18:42:49.881-08:00</atom:updated><title>mySpace Version 2 Customize Top Section, Mood, Online now Icon, contact Table, url, image, last login, location</title><description>MySpace 2.0 (V2)(v.2) Customize the top area&lt;br /&gt;&lt;br /&gt;&lt;span class=myNote&gt;All rights reserved.  &lt;br /&gt;You may use my code for the following:&lt;br /&gt;- to customize a myspace page&lt;br /&gt;- for any other use please ask.  I usually say yes, if the use adds value (such as use with layout art and use in other tools.)&lt;br /&gt;But I like credit.&lt;br /&gt;- Do NOT remove my credits (you may add your own if you add value).&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;For a tool that will generate the needed code, for either an online now icon, which will allow you to show one icon when online and another when not online, go here:&lt;br /&gt;&lt;br /&gt;http://xiii.us/eGen/olSkin.php&lt;br /&gt;&lt;br /&gt;The online icon code is pretty easy and straight forward, I am sure it can probably be found on lots of sites by now (it is much easier then in version 1).&lt;br /&gt;However, showing one icon when offline, and another when online, and allowing for transparency, does take more complicated code.  So please do not copy my code to other sites.  You may use it, on your profile.&lt;br /&gt;If you want to make icons to work with the code, ask me, I am willing to share with those who are adding value (such as creating images).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This article is a work in progress.  I just wanted to get some code out here, to refer people to, who were asking how to do this stuff.&lt;br /&gt;&lt;br /&gt;Custom Mood:&lt;br /&gt;&lt;br /&gt;Replace the image, with the image you want to use, then insert the following block of code into your css edit area.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! start Custom Mood !}&lt;br /&gt;div.basicInfoModule div.basicInfoDetails span.mood img {height:0px; width:0px; display:inline;}&lt;br /&gt;div.basicInfoModule div.basicInfoDetails span.mood img { padding-right:30px; padding-top:30px; background-image:url(http://i38.tinypic.com/2wna25l.jpg); background-repeat:no-repeat;}&lt;br /&gt;i.iix {display:none;}&lt;br /&gt;{! end code for custom mood !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;If your image size is larger then the 30x30, adjust the padding px sizes, to accomodate your image.&lt;br /&gt;&lt;br /&gt;Custom online now icon:&lt;br /&gt;Replace the image, with the image you want to use, then insert the following block of code into your css edit area.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! start code for custom online now icon !}&lt;br /&gt;img.ImgOnlineNow {height:0px; width:0px; &lt;br /&gt;padding-top:20px; &lt;br /&gt;padding-left:80px; &lt;br /&gt;background-image:url(http://i2.tinypic.com/4q5x18z.gif); &lt;br /&gt;background-repeat:no-repeat;}&lt;br /&gt;i.iix {display:none;}&lt;br /&gt;{! end code for custom online now icon !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Custom OFF and ONLINE icons&lt;br /&gt;&lt;br /&gt;I have an updated version of this code, that does allow for the online icon to contain transparency.  Instead of covering the offline icon, as my earlier version of the code did, it will actually remove the offline icon, when the online icon is displayed.  This allows for more transparency in the online icon.&lt;br /&gt;&lt;br /&gt;The newer code can be found here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/olSkin.php"&gt;online now icons myspace 2.0, offline icons myspace 2.0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This will display one image when you are offline and another when you are online.&lt;br /&gt;This requires an image, where the bottom 20px represent the image you want to show when offline, and the top 20px represent the image you want to show when online.&lt;br /&gt;If using transparency, the online portion of the image needs to cover all the visible areas of the offline icon (unless you want these areas to show while online).&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{!start code for custom online/offline icon!}&lt;br /&gt;{!code author:Eileen views-under-construction.blogspot.com !}&lt;br /&gt;{!do not remove my credit, do not re-publish my code, see above website for terms!}&lt;br /&gt;li.offline {display:none;}&lt;br /&gt;ul.profileUserInfo li {background-position:left bottom; height:20px; width:80px; background-repeat:no-repeat;} &lt;br /&gt;ul.profileUserInfo li img{ padding-top:20px; background-repeat:no-repeat; background-position:left top;}&lt;br /&gt;ul.profileUserInfo li, &lt;br /&gt;ul.profileUserInfo li img {background-image:url(http://i287.photobucket.com/albums/ll142/mpskin/0-0/onoff/scroll-gold.png);}&lt;br /&gt;ul.profileUserInfo li#adr,&lt;br /&gt;ul.profileUserInfo li.tags,&lt;br /&gt;ul.profileUserInfo li.lastlogin {background-image:none; width:auto; height:auto;} &lt;br /&gt;{!end code custom off/online icon !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Style the contact table:&lt;br /&gt;The easiest improvement to make to the default contact table, is to remove the ugly images, and then style the text.&lt;br /&gt;&lt;br /&gt;The following code block will remove the images,style the text, position the link within the li (solves some alignment/spacing issues), apply background color:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! contact table customize!}&lt;br /&gt;{! code author:Eileen; views-under-construction.blogspot.com !}&lt;br /&gt;li.i.clearfix {display:none;}  &lt;br /&gt;{!OPTIONAL: color and border to contact table!}&lt;br /&gt;ul.contactLinks {background-color:mistyrose; border:2px magenta solid;}&lt;br /&gt;{!Size contactLinks div, override padding!}&lt;br /&gt;ul.contactLinks {width:100px; height:60px; padding:0px;}&lt;br /&gt;{size of individual li elements around each link}&lt;br /&gt;ul.contactLinks li {position:relative; width:100%; height:33%;  text-align:center;}&lt;br /&gt;{!apply to all contactLinks!}&lt;br /&gt;ul.contactLinks li a {background-image:none; padding:0px; font-family:comic sans ms; font-size:11px; margin-right:auto; margin-left:auto;}&lt;br /&gt;{!apply style for link pseudo-classes!}&lt;br /&gt;ul.contactLinks li a:link, &lt;br /&gt;ul.contactLinks li a:active, &lt;br /&gt;ul.contactLinks li a:visited  { color:purple;  }&lt;br /&gt;ul.contactLinks li a:hover {color:green; text-decoration:none;}&lt;br /&gt;{!OPTIONAL color center link a different color!}&lt;br /&gt;ul.contactLinks li.addToFriends {background-color:silver;}&lt;/code&gt;&lt;/pre&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Custom contact table:&lt;br /&gt;To find custom contact tables, and code generator for use with your own custom contact table, go here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/ctSkin.php"&gt;myspace 2.0 custom contact tables, custom contact table code generator&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There are so many different ways to do this.&lt;br /&gt;If you are NOT moving the table (or moving it a very small distance, using margins) I recommend placing your custom table image, as a background, to the ul.contactLinks&lt;br /&gt;element.&lt;br /&gt;(I used the li element instead, because I later plan to add the option to move the table.)&lt;br /&gt;However, if you want to move the contact table/links,&lt;br /&gt;my preferred method is to use the top li element to hold the contact table image, and then place the additional li elements so that the correct portion of the background shows through.&lt;br /&gt;&lt;br /&gt;(Due to the existing core myspace code, moving the ul element, has issues. )&lt;br /&gt;&lt;br /&gt;The following block of code applies a custom image, to the contact table, and removes the existing text and image.  This code will keep the table in the default position.  The custom image should be 100x90 pixels, with each link 100x30.&lt;br /&gt;This is slightly longer then the default contact table, and will push down the picture area, slightly.&lt;br /&gt;&lt;br /&gt;This code goes in the css section, of the customize profile section:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! start code for custom contact table !}&lt;br /&gt;{! code author:Eileen; views-under-construction.blogspot.com; all rights reserved; !}&lt;br /&gt;ul.contactLinks {width:100px; height:90px; overflow:hidden;  background-image:url(http://i287.photobucket.com/albums/ll142/mpskin/0-ct/100x90/scroll-pink-candy.png); background-repeat:no-repeat;}&lt;br /&gt;ul.contactLinks li {  height:29px; width:100%; margin:0px; overflow:hidden; display:block;}&lt;br /&gt;ul.contactLinks li a { background-image:none; height:28px;  width:100px; float:left; text-indent:1313px }&lt;br /&gt;{! end code for custom contact table !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt; Replace my image with your own. (or you may use my image if you want.)&lt;br /&gt;&lt;br /&gt;The next block does not relocate the table, but uses code that will make it easier to later relocate the table.  This is the version currently being used in my code/contact table tool.  There are so many ways to code this, that each time I write the code, I do it slightly different.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;{! START custom contact table/links skin !}&lt;br /&gt;{!xiii.us/eGen/ctSkin.php code author:Eileen all rights reserved!}&lt;br /&gt;ul.contactLinks {position:relative; height: 90px; width:100px;}&lt;br /&gt;ul.contactLinks li.message {overflow:hidden; background-image:url(http://i287.photobucket.com/albums/ll142/mpskin/0-ct/100x90/nature/butterfly-on-green.png);height:90px; width:100px; position:absolute; top:0px; left:0px; }&lt;br /&gt;ul.contactLinks li.addToFriends {overflow:hidden; height:30px; width:100px;position:absolute; top:29px; left:0px;}&lt;br /&gt;ul.contactLinks li.comment {overflow:hidden; height:30px; width:100px;position:absolute; top:60px; left:0px;}&lt;br /&gt;ul.contactLinks li a {display:block; background-image:none; padding-left:1313px; width:100px; height:30px;}&lt;br /&gt;{! END custom contact table/links skin !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The next code block allows you to re-position the contact table, using absolute positioning within the modulebasicInfo div, and measured from the top left corner of that div.&lt;br /&gt;This code goes in the css section, of the customize profile section:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{! start code for custom contact table !}&lt;br /&gt;{! code author:Eileen; views-under-construction.blogspot.com; all rights reserved; !}&lt;br /&gt;ul.contactLinks li.message&lt;br /&gt;{display:block; position:absolute; top:0px; left:0px; height:90px; width:100px; background-color:transparent;}&lt;br /&gt;ul.contactLinks li.addToFriends {display:block; position:absolute; top:30px; left:0px; height:30px; width:100px; }&lt;br /&gt;ul.contactLinks li.comment {display:block; position:absolute; top:60px; left:0px; height:30px;  }&lt;br /&gt;ul.contactLinks li a {padding:0px; position:absolute; top:0px; left:0px; width:100px; display:block; }&lt;br /&gt;div.modulebasicInfo {position:relative; }&lt;br /&gt;{! end code to customize contact table !}&lt;/code&gt;&lt;/pre&gt; Replace my image with your own. (or you may use my image if you want.).&lt;br /&gt;Alter the top and left values so that each link positions where you want it.&lt;br /&gt;&lt;br /&gt;[More custom contact table options coming later, so little time, so much code in my head ...]&lt;br /&gt;&lt;br /&gt;URL style&lt;br /&gt;&lt;br /&gt;After applying the custom contact table, I realized the url looked really bad, I could add it to the top of the contact table, hide it or move it.&lt;br /&gt;Instead I will ditch the ugly orange icon, and modify the text font to blend in.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{!url link!}&lt;br /&gt;{! code author Eileen; xiii.us; views-under-construction.blogspot.com !}&lt;br /&gt;{! however easy the code was to write, if you got it from me, do not remove my credit !}&lt;br /&gt;span.urlLink i.icon {display:none;}&lt;br /&gt;span.urlLink a.url {background-image:none; color:gold; font-size:8px; font-family:comic sans ms;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;OR I can completely hide the url:&lt;pre class="source-code"&gt;&lt;code&gt;{! hide url myspace 2.0 code by Eileen !}&lt;br /&gt;span.urlLink {display:none;}&lt;br /&gt;{! end code to hide url !}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;[More code coming soon, so much code in my head, so little time.]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-5068261054799408375?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2008/11/myspace-version-2-customize-top-section.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>8</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-866842410839109314</guid><pubDate>Mon, 03 Nov 2008 19:54:00 +0000</pubDate><atom:updated>2008-11-03T12:55:23.027-08:00</atom:updated><title>Elections, who to vote for, what to vote for?</title><description>As usual, I find myself mostly undecided, with just over 24 hours before my ballot is due.&lt;br /&gt;&lt;br /&gt;As with most elections, the advertising and Campaigning is mostly full of partial truths, designed to mis-represent reality.  &lt;br /&gt;However, unlike most elections, the hate and scare tactics seem to have reached a new level.&lt;br /&gt;&lt;br /&gt;I do not agree with any single candidate on all of the issues which are important to me.&lt;br /&gt;&lt;br /&gt;I despise earmarks (or any other type of unrelated rider attached to bills).&lt;br /&gt;One candidate states he will veto any bill with earmarks, but then votes in favor of a bill that is stuffed with hundreds of pages of riders, some of which are clearly earmarks.&lt;br /&gt;&lt;br /&gt;I despise, and see a significant problem with any model where socialized costs contribute to privatized profits.  If my taxes pay the bill, the cost is socialized.&lt;br /&gt;&lt;br /&gt;I do not believe in unregulated capitalism, as there are too many ways to profit without actually adding value.  In many cases profit can be obtained while taking away value.  &lt;br /&gt;Give me a capitalism where  profit = value added, charity is given by the person who earned the money being given, and a set of simple equal tax laws that actually have some correlation to an individuals probable demand on (or benefit from) tax funded services; and I will become a devout Capitalist.&lt;br /&gt;But until this style of capitalism can be achieved, I will tend toward some level of what many call "creeping socialism" but I prefer to call "plugging the holes in Capitalism".&lt;br /&gt;&lt;br /&gt;I believe that corporate greed is going to ruin this country.  The shipping of jobs over seas is a huge risk to this country's economic stability.  The huge (and increasing gap) between top management and those who invent the products and do the work is a risk.  The benefits top management gets from short term stock price gains over long term stability is a risk, and leads to behaviors that put long term company stability at risk.  &lt;br /&gt;&lt;br /&gt;But how big a risk, should something be, before Government steps in, and implements policies that put the Good of the Country above the freedom of the Corporation?&lt;br /&gt;Can we even trust Government to implement policies that really achieve this, when the tendency seems to be policies they claim should achieve this, but actually benefit some companies (those who have purchased our politicians) at a cost to others.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So who to vote for?&lt;br /&gt;One candidate wants to change the way wealth is re-distributed (although some continue to argue as if he is introducing the socialist idea of wealth redistribution to a system which does not already contain this.)&lt;br /&gt;He wants less re-distribution to the top, and more to the bottom.&lt;br /&gt;&lt;br /&gt;I am in favor of less to the top.&lt;br /&gt;I am NOT in favor of more to the bottom.&lt;br /&gt;&lt;br /&gt;As for the other candidate, I believe he wants to keep the tax/benefit burden pretty much like it now is.  &lt;br /&gt;He does want to tax medical insurance, paid for by the employer, and then give us all $5000.  In my case, this is probably a net gain, at least short term.&lt;br /&gt;But it seems like a rather complicated way of moving money around.&lt;br /&gt;&lt;br /&gt;I think that Medical Insurance companies are a problem, and add no value at all.&lt;br /&gt;They bully suppliers (much like WalMart does).&lt;br /&gt;They have forced the wages of those who actually provide the care down, while reaping huge profits for themselves.&lt;br /&gt;&lt;br /&gt;Maybe McCain's plan will help.  We can all take our $5000, and shop for Medical Insurance, basing our purchase decision on how much of the money collected actually goes to care, and how much to overhead.  &lt;br /&gt;&lt;br /&gt;Obama's message is mixed.  He seems in favor of a Government program here, but I am not clear on exactly what it is.&lt;br /&gt;&lt;br /&gt;I really like that Obama feels that corporations should NOT be allowed to take away our retirement benefits.&lt;br /&gt;(I am a victim of this very corporate behavior, where something is stated as a benefit, and then after working for the company for 15 years, the rules change, and a major portion of the benefit goes poof.  I know the fine print indicated it could, but based on the past track record of the company, it was not illogical for me to assume the benefit would remain.)&lt;br /&gt;&lt;br /&gt;I like that Obama is against corporate tax loopholes.  In fact, he even indicated a willingness to LOWER the corporate tax rate, if the loopholes were removed.&lt;br /&gt;&lt;br /&gt;I still have no idea why we are STILL in Iraq, and prefer a policy that gets us out quickly to one that keeps us there longer.  &lt;br /&gt;If our purpose is to protect a key resource, for the sake of defense, then lets openly state that, and explain to the people why it is needed.&lt;br /&gt;If our purpose is to fight terrorism, I am not sure Iraq is where we belong.&lt;br /&gt;If our purpose was to overthrow their evil government, we have already accomplished that.  Leaving Iraq is NOT the same as having left Vietnam when we did.  We clearly gave up in Vietnam.  Maybe we are just finished with our key mission in Iraq.&lt;br /&gt;(I can't know if we are done or not, if I do not really understand what the mission is.)&lt;br /&gt;&lt;br /&gt;I am against the government printing so much money that it devalues the money I have worked hard to save.&lt;br /&gt;I think the law should require the government to give me (and others who have money saved) a share of the money they print, to bring my own savings up, an amount based on inflation, so its actual purchasing value remains the same.&lt;br /&gt;Printing money to bail out large corporations, is a way of re-distributing from me (and others who have saved) to the top.&lt;br /&gt;However both Presidential candidates voted in favor of a bill to give billions to the top.  Then the Fed LOWERED interest rates.  &lt;br /&gt;Should not the shortage of money to borrow INCREASE the value of MY SAVINGS?.&lt;br /&gt;Should the interest on my savings now go UP, instead of down?&lt;br /&gt;&lt;br /&gt;Even more important then who I vote for for President, is who I vote for as a Senator.&lt;br /&gt;I live in a very Blue state.&lt;br /&gt;&lt;br /&gt;I have the choice between an incumbent Republican who not only voted for the bail out bill, but did so because of certain earmarks (he sent me a letter explaining why he voted for the bill); and a Democrat who I know very little about.&lt;br /&gt;Often I vote based on balance of power, which would lead me to vote for the Republican.&lt;br /&gt;However, I decided to vote out all incumbents, especially those who voted in favor of the bail out bill.  &lt;br /&gt;&lt;br /&gt;I also have several measures to decide on.&lt;br /&gt;I usually vote no on these, because they are put together in a complicated fashion.  I feel that laws do NOT need to be so complex, that they are difficult to understand.&lt;br /&gt;However, one measure will get my yes vote.&lt;br /&gt;I am in favor of being able to deduct 100% of my federal tax bill from my state taxable income.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-866842410839109314?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2008/11/elections-who-to-vote-for-what-to-vote.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>4</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-5615825831345360021</guid><pubDate>Wed, 14 Nov 2007 06:16:00 +0000</pubDate><atom:updated>2009-02-27T19:20:32.374-08:00</atom:updated><title>MySpace Music Player Skins, Ad Free, No PopUps, Skin or color your music Box, standard player and Band Player</title><description>&lt;h1&gt;MySpace Music Player Skins&lt;/h1&gt;&lt;h2&gt;Some quick links to various elements of this article:&lt;/h2&gt;&lt;span class="linkHB"&gt;&lt;A HREF="http://xiii.us/eGen/mpSkin.php"&gt;Music Player Skins and Skin Code generator&lt;/a&gt;&lt;/span&gt;&lt;span class="linkHB"&gt;&lt;A HREF="#scrollBox"&gt;Issues with scroll boxes&lt;/A&gt;&lt;/span&gt;&lt;span class="linkHB"&gt;&lt;A HREF="#Updates"&gt;Updates, related to Myspace changes which effect music player skins&lt;/a&gt;&lt;/span&gt;&lt;span class="linkHB"&gt;&lt;A HREF="#myRights"&gt;My Rights related to Music Player skin Code&lt;/a&gt;&lt;/span&gt;&lt;span class="linkHB"&gt;&lt;A HREF="#OfferSkins"&gt;If You want to Offer Music Player Skins on Your Site Click Here&lt;/A&gt;&lt;/span&gt;&lt;span class="linkHB"&gt;&lt;br /&gt;&lt;A HREF="#bandShowBkgd"&gt;Simple Band Player improvement; Allowing your background to show through your player&lt;/A&gt;&lt;/span&gt;&lt;span class="linkHB"&gt;&lt;A HREF="http://views-under-construction.blogspot.com/2006/01/myspace-band-music-player-color-skin.html"&gt;Tutorial for Band Player Skins &lt;/A&gt;&lt;/span&gt;I suggest reading the above article even if you use the tool to generate your code.&lt;br /&gt;&lt;span class="linkHB"&gt;&lt;A HREF="#mpSkinH"&gt;How the Skins Work, and Some History&lt;/A&gt;&lt;/span&gt;&lt;span class="linkHB"&gt;&lt;A HREF="#mpSkinBug"&gt;Why does the Music Player Skin code on Most Sites have a Bug?&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="linkHB"&gt;&lt;A HREF="#OfficialSkinIssues"&gt;Using the old "official" Myspace Skins&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="Updates"&gt;Updates, related to Myspace changes which effect music player skins&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;The code in my music player skin code generator, has been updated as follows:&lt;br /&gt;- Includes code for myspace 2.0&lt;br /&gt;- Includes several different cropped player options, for showing only part of the player.&lt;br /&gt;- should not break any scroll boxes, as long as you are using a standard size skin&lt;br /&gt;(295 x 51 for the single song player; 295 x 400 for the playlist player)&lt;br /&gt;&lt;b&gt;If&lt;/b&gt; you are using one of my cropped player options, and you have scroll boxes, you need to read this:&lt;br /&gt;&lt;br /&gt;- I have added hundreds of new skins for both full sized and cropped down size players.  &lt;br /&gt;&lt;br /&gt;- I had to remove the border option, the myspace code changes broke this functionality.  However, I plan to add it back for use with myspace 2.0.&lt;br /&gt;&lt;br /&gt;- I removed the custom size option, and instead opted to provide templates for the most popular sizes.  &lt;br /&gt;&lt;br /&gt;- I fixed the custom positioning option.  I don't know when I broke it, but it didn't work for a while.  &lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="scrollBox"&gt;Fixing Issues with scroll boxes&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;IF&lt;/b&gt; IF you are using a standard size skin (295 x 51 for single song, or 295 x 400 for playlist multi song player) you should NOT have a scroll box issue on your page.  If you do, please leave me a message, so I can look at the problem.&lt;br /&gt;&lt;b&gt;IF&lt;/b&gt; you are using myspace 2.0 you should NOT have a scroll box issue.  If you do, please leave me a message, so I can look at the problem&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IF&lt;/b&gt; you are using myspace 1.0 &lt;b&gt;AND&lt;/b&gt; a cropped (downsized) version of the player, you may have a problem with scroll box code, caused by the music player skin code.&lt;br /&gt;&lt;br /&gt;If the scroll box is for your friends and comments, comments, or any of the content below the meet section, go here for code that does not conflict with the music player skin code:&lt;br /&gt;&lt;a href="http://views-under-construction.blogspot.com/2007/02/myspace-scroll-comments-friendscomments.html"&gt;Scrolling Comments, friends and Comments, code that does not conflict with music player skin code&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you have added a scroll box, you need to do a few things to fix your scroll box:&lt;br /&gt;&lt;br /&gt;1) Insure your scroll box has a class. This way you can apply style to the scroll box, that will not effect anything else.&lt;br /&gt;&lt;br /&gt;2) When you assign the style to the scroll box, use explicit addressing.  The more explicit the addressing, the higher the precedence (with classes carrying 10x the weight of elements)&lt;br /&gt;&lt;br /&gt;3) whenn assigning style to the scroll box use !important for height and weight.&lt;br /&gt;Because myspace used inline style, I had to use !important to override that style.&lt;br /&gt;Therefore I had to use !important to override my music player skin code, on other divs.&lt;br /&gt;For this reason you must use !important to override the music player skin code, for your scroll box.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Below is an example, of a scroll box, which has the class and style assigned.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;div class=&amp;quot;myScroll&amp;quot;&amp;gt;&lt;br /&gt;scroll box content here&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table td table td div.myScroll {height:200px !important; &lt;br /&gt;width:200px !important;&lt;br /&gt;overflow:auto !important;&lt;br /&gt;background-color:pink;&lt;br /&gt;border:3px hotpink solid;&lt;br /&gt;display:block;&lt;br /&gt;visibility:visible;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="myRights"&gt;My Rights To most of the Music Player Skin code Being Used&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;Custom myspace music player skins were my idea, and it was my effort that enabled almost every site, currently offering these skins, to offer them.&lt;br /&gt;Yet only a few sites have chosen to credit me for my work. &lt;br /&gt;Why?&lt;br /&gt;&lt;br /&gt;I say thank you to those sites, and they will have my on-going help and support. &lt;br /&gt;&lt;br /&gt;As for those who feel it is just ok to take someone else's idea, for your own profit, think about it.  Could you have figured out how on your own, with out having seen someone else's code?  Would you have thought it could be done, and then figured out how to do it?  If the answer is yes, then why did you not offer skins before my code got published?&lt;br /&gt;&lt;br /&gt;Despite the popularity of myspace customizing sites, and the multiple questions asking how to color the player in various forums,  NO one had offered skins, or posted code for making skins, before I published my code.&lt;br /&gt;&lt;br /&gt;What does a site lose, if they credit me?&lt;br /&gt;Why not credit me? &lt;br /&gt;What does a site gain if they credit me?  &lt;br /&gt; At least two sites lost my referrals, I was referring people to those sites for either a useful service they offered or for their art.  (lolspace is one of these sites) &lt;br /&gt; I won't steal your skin art.&lt;br /&gt;&lt;br /&gt;Why do the kids that post to createblog, feel a need to claim that they wrote the code, when they don't even know enough about the code to edit out the style lines related to my credit, although they did remove my actual credit?&lt;br /&gt;I highly suspect that this was the first place my code was published, without my permission.  From there it spread quickly.&lt;br /&gt;&lt;br /&gt;For those who did write their own code; I am not claiming any rights to your work. &lt;br /&gt;(I do know of one other source of original code for this.  The coder did things differently, as I would expect from someone doing this on their own.  But this is NOT the code I see on the layout sites offering skins.) &lt;br /&gt;&lt;br /&gt;For those who started with my work, and then made little tweaks, you are using a derivative of my work, and crediting me would be the ethical thing to do.&lt;br /&gt;I try to do the same if I use any content (such as images) which is either someone else's work, or a derivative of someone else's work. &lt;br /&gt;(But often I do not know who is the author of the work.) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How do I know that the sites offering skins are using either my code, or a derivative of my work?&lt;br /&gt;Two coders would not make exactly the same decisions, when there are  several other ways to accomplish the task.  For some of my later versions I added in multiple useless code lines and code line segments, which are showing up in other people's work.&lt;br /&gt;&lt;br /&gt;How does a teacher know when two students copy each other's work?&lt;br /&gt;&lt;br /&gt;While I was the first to publish myspace music player skin code, I was not the first to offer a skin code generator.  A site called Jombley beat me to that.  However, their generator, generated my early version of the code.  This was the version with the left side div bug.  It was also the version where I used a work around, to get around a bug in a beta version of safari I was testing in.   &lt;br /&gt;They had taken my code, and wrapped a generator around it.&lt;br /&gt;Their generator does do some unique things that mine does not do, and mine does some things that theirs does not do.&lt;br /&gt;(I would promote their site and link to their generator, if they bothered to credit me for the code.).&lt;br /&gt;&lt;br /&gt;&lt;a class="boldLink" href="http://xiii.us/eGen/mpSkin.php"&gt;&lt;b&gt;Music Player Skins for the Standard Page Music Player, skin it, border it, fade it, color it, size it, position it.  More Skins and Skin Look options than Any Other Side.  Code kept up to date with myspace changes. No visible ad placed onto your myspace page.&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h1&gt;Image showing skin applied to the Band Player:&lt;/h1&gt;&lt;br /&gt;&lt;img src="http://i14.tinypic.com/711sweq.gif"&gt;&lt;br /&gt;Credit for the above image goes to &lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=144090773"&gt;Giulio Genua.&lt;/a&gt;&lt;br /&gt;Giulio has agreed to design skins for others who add him as a friend on myspace.  Contact Giulio for more information.&lt;h1&gt;Add color or skin to myspace music player (band player or Standard player)&lt;/h1&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="OfferSkins"&gt;Offering Music Player Skins on Your Site &lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Ask me.&lt;br /&gt;I can help you set up your skins so they link to my code generator.&lt;br /&gt;&lt;br /&gt;However, this is not a requirement.&lt;br /&gt;The only requirement is that, if you are using my code (even if you modified it slightly) that you credit me on any page you offer the skins, and somewhere in the skin code itself.&lt;br /&gt;The credit on your site, needs to be a link.&lt;br /&gt;The credit in the code does not need to be a link (unless you are also forcing a link back to your own site).&lt;br /&gt;For myspace 2.0 putting in an actual link now requires a separate block of code, placed into the content area, instead of the css area.  &lt;br /&gt;&lt;br /&gt;IF you do link to my generator, you get the following benefits:&lt;br /&gt;- I update the code when myspace makes changes (and they do this a LOT)&lt;br /&gt;- Code is generated for myspace 2.0 and myspace 1.0&lt;br /&gt;- Users can adjust opacity and add additional options.&lt;br /&gt;- I help users if they have conflicting code.  This also helps me find the types of other things users have added to their profiles, that cause such conflicts.  As I find these things, I often tweak my code, to prevent the problem.&lt;br /&gt;&lt;br /&gt;Terms are negotiable.&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="mpSkinH"&gt;How the Skins Work, and Some History&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I first considered writing code for music player skins, long before myspace offered them.  However, there is a reason that my code, was not widely used, prior to that point in time.&lt;br /&gt;&lt;br /&gt;My very early music player skin code, did involve making a copy of the player.&lt;br /&gt;I used to explain why, but choose to remove that content. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Question for those who think that music skin code was so easy to come up with that they have the right to just use it, without crediting the source they either completely copied or made a derivative of:&lt;/b&gt;&lt;br /&gt;What did myspace change, in their own core code, that made this task no longer require I make a copy of the player?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;This is where I had the story about the friend of mine, and the problem they had with their player, that first alerted me that myspace had made a change, that made skinning the player easier.&lt;/b&gt;  The same story can be found on createblog.com.  However there, it is slightly modified.  What is hilarious is that the person claiming this to be their experience, combined my code, with other code, of a completely different style, and one code block actually rendered the other code block broken.  In another case, on createblog, the thief used the wrong picture with the code block.  I had an image to go with one code example, and they used that image with my other code example.  &lt;br /&gt;Why do people do this?  Why do people feel they are entitled to claim other people's work as their own?  &lt;br /&gt;Profit?  In the case of createblog, I don't think those posting my work, and claiming it as their own, make any profit.  So why?  What is the motive?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The 2nd version of my code (the first version which did not involve copying the player), is the version found on many sites which offer skins.  It is in tact, with my original bug.&lt;br /&gt;A few sites have managed to fix the bug on their own.  A few others copied my fix (along with its useless content). &lt;br /&gt;A few sites had the bug for months, and then recently fixed it.&lt;br /&gt;&lt;br /&gt;Why would this site (wootfreelayouts), credit me initially, (after I told them that their explanation of how the skins worked was incorrect), and then later remove that credit?&lt;br /&gt;They did this several weeks before they actually fixed the bug they copied from me.&lt;br /&gt;Even after they fixed the bug, they had a derivative of my work. &lt;br /&gt;My work is what made their skin business possible.  &lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="mpSkinBug"&gt;Why do most sites, offering skins, have a bug in their code?&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;I overlooked a few things when I initially created the code.  I didn't even use the most obvious code.  I made a few obscure decisions for obscure reasons (one reason was related to a beta version of Safari that I was using.)&lt;br /&gt;One of those decisions resulted in a bug.  &lt;br /&gt;I call it the left side div bug.&lt;br /&gt;I had never seen a left side app (I am not sure if they existed yet).&lt;br /&gt;However, as soon as my code became widely used, reports of the bug started to show up.&lt;br /&gt;I quickly fixed the bug in my copy of the code.&lt;br /&gt;&lt;br /&gt;When I initially fixed the bug, I left in a segment, that was useless.  I did find a few sites with this version of my copied code, that included the code fix, along with the useless segment of code. (thelolspace.net and a few others) &lt;br /&gt;&lt;br /&gt;Why did I use -moz-opacity?&lt;br /&gt;For those who wrote their own code, or slightly modified mine, why did you keep -moz-opacity?  If you came up with it on your own, why?&lt;br /&gt;Why not opacity?  &lt;br /&gt;(ok, those who read this article before I deleted that information, or those who go through the trouble to dig it out of the google archive can read my explantion.)&lt;br /&gt;&lt;br /&gt;The use of the two together is moot.  &lt;br /&gt;The same goes for -khtml-opacity and Safari.&lt;br /&gt;opacity works in all but the very old versions of FireFox, Mozilla, and Safari, just as well as -khtml or -moz opacity.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="OfficialSkinIssues"&gt;Applying the older "official" myspace Skins&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This by-passes the menu, that most people no longer have:&lt;br /&gt;&lt;br /&gt;The following link takes one directly to the stop for applying the skin&lt;br /&gt;&lt;a href="http://collect.myspace.com/index.cfm?fuseaction=music.addskin&amp;skinid=1"&gt;Apply Skin 1:Default Skin &lt;/a&gt;&lt;br /&gt;&lt;a href="http://collect.myspace.com/index.cfm?fuseaction=music.addskin&amp;skinid=2"&gt;Apply Skin 2:Zune &lt;/a&gt;&lt;br /&gt;&lt;a href="http://collect.myspace.com/index.cfm?fuseaction=music.addskin&amp;skinid=3"&gt;Apply Skin 3:large Zune&lt;/a&gt;&lt;br /&gt;&lt;a href="http://collect.myspace.com/index.cfm?fuseaction=music.addskin&amp;skinid=4"&gt;Apply Skin 4:Boy with Boom Box &lt;/a&gt;&lt;br /&gt;&lt;a href="http://collect.myspace.com/index.cfm?fuseaction=music.addskin&amp;skinid=5"&gt;Apply Skin 5:Girl with Boom Box &lt;/a&gt;&lt;br /&gt;&lt;a href="http://collect.myspace.com/index.cfm?fuseaction=music.addskin&amp;skinid=6"&gt;Apply Skin 6 Lime Digital Player&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you are stuck with a skin you do not like (some people installed a skin before the option went away), and you want to remove it, use the 1st link in the list above.&lt;br /&gt;This will restore the default skin.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="wDivOverlay"&gt;Applying a Band Player Skin IF you have a Div Overlay&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;The location for this code, depends on your div overlay strategy.&lt;br /&gt;If you are using MY strategy, place this code block just AFTER the &lt;br /&gt;&lt;b&gt; !----START CUSTOM CONTENT ----! &lt;/b&gt;&lt;br /&gt;which should be in your band members block.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/ms/music-player-skin&amp;quot;&amp;gt;&lt;br /&gt;MySpace music Player Skin Code by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;div class=&amp;quot;mPlayerDiv&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Next Place this at the very top of the influences (or wherever you are keeping style blocks.&lt;br /&gt;Modify the top and left values to suit your own profile.&lt;br /&gt;These values should be the same for the div as they are for the object.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/ms/music-player-skin&amp;quot;&amp;gt;&lt;br /&gt;MySpace music Player Skin Code by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div.mPlayerDiv {position:absolute; top:&lt;b&gt;145px&lt;/b&gt;;&lt;br /&gt;z-index:8;&lt;br /&gt; left:&lt;b&gt;410px&lt;/b&gt;; width:450px; height:345px; background-image:url(http://genuabuilders.com/host/mp02.jpg);&lt;br /&gt;background-repeat:no-repeat; background-position:center center;}&lt;br /&gt;.i {display:none;}&lt;br /&gt; object,  embed {-moz-opacity:0.4}&lt;br /&gt;object {filter:alpha(opacity=40);  width:450px; position:absolute; top:&lt;b&gt;145px&lt;/b&gt;; left:&lt;b&gt;410px&lt;/b&gt;; z-index:9}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;If you are using someone else's div overlay strategy, the technique is the same.&lt;br /&gt;However, most of the other strategies I have seen do require that you position from top center of the body, instead of top left of a containing div.&lt;br /&gt;In this case you will need your position statement to look more like this:&lt;br /&gt;&lt;br /&gt;{position:absolute; top:Ypx; left:50%; margin-left:-Xpx}&lt;br /&gt;&lt;br /&gt;As long as you position the mPlayerDiv exactly the same as you position the object/embed; your skin should come out in the same location, as your player.&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="bandNoDivOverlay"&gt;Applying a Band Player Skin IF you Do NOT have a Div Overlay&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;[I deleted this code, I need to re-write it based on lots of myspace changes since I wrote this article]&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;========================================================================&lt;br /&gt;&lt;br /&gt;Some sites using my code without my permission:&lt;br /&gt;&lt;br /&gt;sunshinee.com  (most obvious case of code theft, related to my mini player code whih I offer here: &lt;a href="http://views-under-construction.blogspot.com/2006/01/myspace-music-player.html"&gt;Reduce Music Player to Just the Start Stop Button&lt;/a&gt;.)&lt;br /&gt;&lt;br /&gt;wootfreelayouts.com  (used to credit me but stopped.  I believe this was on the advice of the person who provides the skins to multiple sites.  Admitting I was the author, without meeting my requirements for properly crediting me, put them at risk.)&lt;br /&gt;oh-lyts.com&lt;br /&gt;musicplayerskins.net &lt;br /&gt;freeglitters.com&lt;br /&gt;www.static-layouts.com&lt;br /&gt;myspacelyts.net&lt;br /&gt;snazzyspace.com&lt;br /&gt;totallylayouts.com&lt;br /&gt;dolliecrave.com&lt;br /&gt;thelolspace  (obvious derivative of a later version of my work)&lt;br /&gt;&lt;br /&gt;All of these sites, and many more,  are profiting from MY code.&lt;br /&gt;Is that fair?  Legal?  &lt;br /&gt;Do they Care?&lt;br /&gt;Is there anything I can do?&lt;br /&gt;Does anyone else Care (I have concluded no).&lt;br /&gt;&lt;br /&gt;note to self:  Try to use your power for good and not evil.  Two wrongs do not make a right.  &lt;br /&gt;&lt;br /&gt;&lt;div class="myQuerySpan"&gt;Thank you for Visiting, Have a Nice day&lt;br /&gt;&lt;/br&gt;&lt;br /&gt;sunshinee sunshine layouts&lt;br /&gt;The tool offers skins in all the following themes:&lt;br /&gt;glittery music player skins.&lt;br /&gt;green music player skin, Houston Rockets, Miley Cyrus, skulls, stars,&lt;br /&gt;blue, yellow, red, pink, purple, orange, camouflage, hello kitty, care bear, clouds, sunset, beach, animal skins, hannah montana, miley cyrus, hillary duff, birds, cats, ballerina, pink, girly, girl, emo, ocean, nemo, crush, finding nemo, dory, Mariah Carey, Chris Brown, Young Jeezy, Usher, Rhanna, One Republic, Plies, Linkin Park, Britney Spears, Fergie, Daughtry, Flo-rida, Jordin Sparks, Guitar Hero, Eeyore, Medina Lake, Panic at the disco, All Time Low, Eminem, Elmo, Vans, Red Bull, Hillary Duff, Hilary Duff, Chris Brown, Weezy Baby, 50 Cent, fifty Cent, Soufga Boy, Peace Signs, Paramore, David Wright, Jessica Simpson, G Unit, Jonas Brothers, Fall out boy, Love My Boo, Tinkerbell, Hollister Co, Abercrombie Finch, Danity Kane, Armando Allen,  Lakers Los Angeles, Boston Celtics, Lollipop, Orlando Magics Gerald Henderson, Devil Wears Prada, Baker Skateboards, Rainbow Rock, American Eagle Outfitters&lt;br /&gt;Code to add color to my myspace music player.&lt;br /&gt;Background picture for music player.  Image for music player.&lt;br /&gt;Faded color skin for music player.&lt;br /&gt;Myspace Music Player Skin Code Generator. &lt;br /&gt;THOUSANDS of solid skin colors to choose from.&lt;br /&gt;OVER 800 pattern/image skins done by various artists.&lt;br /&gt;Largest collection of myspace music player skins along with code that is maintained by the author.&lt;br /&gt;Largest collection of myspace music player skins decals designs and colors.&lt;br /&gt;myspace music player skins which work with the default myspace player&lt;br /&gt;how to make your own myspace music player skin&lt;br /&gt;myspace player skins which do not require you to load a new player.&lt;br /&gt;Create a custom skin for your myspace music player.&lt;br /&gt;How do I create a custom skin for my myspace music player.&lt;br /&gt;Color myspace music player.&lt;br /&gt;myspace music player skins&lt;br /&gt;&lt;br /&gt;Why does my music player skin show up in my interests?&lt;br /&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;fall out boy myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;kawaii myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;girly myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;cute myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;pink myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;rainbow myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;lil wayne myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;hot pink myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;hot myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;animal myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;bear myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;bird myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;hilary myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;flashing myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;flashing color myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; beer myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; movie myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; moving myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; artist myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; woot myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; free myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; blue myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; green myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; yellow myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; black myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; purple myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; white myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; cool myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; emo myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; silver myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; quote myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; brand myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; montana myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; military myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; patriotic myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; nature myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; lil wayne myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; jonas brothers myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; lol myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; batman myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; elmo myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; eeyore myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; animal skin myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; tie dye myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; money myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; music note myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; retro myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; electric myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; skull myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; pirate myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; hello kitty myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; tinkerbell myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; pooh myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; care bear myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; mickey mouse myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; disney myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; beach myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; monkey myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; fairy myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; star myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; moon myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; rainbow myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; poka dot myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; cloud myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; bird myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; rabbit myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; ballet myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; dino myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; nautical myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; boat myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; anchor myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; faded myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; light myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; opaque myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; transparent myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt; see through myspace music player skins&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Music Player Skins MySpace&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Skins found in My Music Player Skin Libraries (all found with my music player skin generator which can be found here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;Eileen's MySpace Music Player Skin Code Generator&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Hearts and Heart Pattern music player skins:&lt;br /&gt;This library includes several heart patterns, many based on photographs of fabric and other products containing hearts.&lt;br /&gt;Some were made by manipulating images found in the public domain on photobucket.&lt;br /&gt;Some were custom designed for me by a friend.&lt;br /&gt;&lt;br /&gt;Rainbow, Tiedie, Neons, Flashing bright Colors:&lt;br /&gt;This library includes some images which I took from the public domain on photobucket.&lt;br /&gt;Some I obtained by taking photos of some of my TieDie clothing.&lt;br /&gt;Some were made using animationshop and paintshop.&lt;br /&gt;&lt;br /&gt;Cute Music Player Skins and Cartoon Music Player Skins:&lt;br /&gt;This includes many cartoon characters, along with dinosaurs, and photos of cute animals..  &lt;br /&gt;In many cases I searched for the popular cartoon character in a music setting, such as playing an instrument, singing or dancing.&lt;br /&gt;A few involve photographs of products such as Speakers, which included the character.&lt;br /&gt;This library includes several popular cartoon characters, along with cute photos of animals.&lt;br /&gt;Ths library includes, but is not limited to:&lt;br /&gt;mickey mouse, stitch, lilo, flinstones, sponge bob, boots (from Dora), sylvester, tweety, winnie the pooh, anime, cheshire cat, stewie from family guy, lots of hello kitty, betty boop, goofy, simpsons, mario, marvin the martian, precious moments, snow white, sleeping beauty, south park, walle, yogi bear, taz, tinker bell, loony tunes, curious george, cookie monster, elmo, candy, stuffed bears and other stuffed animals, airplanes, cars, happy faces and more.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Artists and Celebrities&lt;/b&gt;&lt;br /&gt;This includes both images of music artists, other celebrities, and album art.&lt;br /&gt;I decided which artists to make skins of, by going through the top music charts, both on MySpace, and on the Radio.&lt;br /&gt;The collection includes, but is not limited to:&lt;br /&gt;Jonas Brothers, Kevin Jonas, Miley Cyrus, Hannah Montana, Aly and AJ, Cream (album art), Akon, Lil Wayne, Kelly Clarkson, Killswitch engage, misfits, Jesse McCartney, tia tequila, Pink Floyd (album art), Kardinal Offishall, Cold Play, Aubrey oDay (Danity Kane),T.I. TI, Dylan Sprouse, Cole Sprouse, Sprouse Bros, Yo Gotti, Jodin Sparks, Madonna, Katy Perry, Kid Rock, Mason Musso (Metro Station), natasha bedingfield, pussy cat dolls Nicole Scherzinger, Ray J, Taylor Swift, Trace Cyrus, &lt;br /&gt;Amy, tool, linkin Park, Sick Puppies, Vin Diesel  (and many more).&lt;br /&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/music-player-skins-skin.php"&gt;Music Player Skins for the Standard Myspace Page&lt;/a&gt;&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkinB.php"&gt;color or skin the myspace Band Player&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-5615825831345360021?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/11/myspace-music-player-color-skin-band.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>101</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-8372111015694653863</guid><pubDate>Mon, 12 Nov 2007 01:41:00 +0000</pubDate><atom:updated>2008-08-02T17:48:43.342-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>myspace music player skins code generator instructions tutorial</category><title>MySpace Music Player Skins Position Myspace Music Player</title><description>&lt;h1&gt;Positioning the Myspace Music Player&lt;/h1&gt;&lt;br /&gt;How to position the myspace music player using my music player skin code tool&lt;br /&gt;&lt;br /&gt;The Tool these Instructions go with can be found here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/mpSkin.php"&gt;MySpace Music Player, Skin, Color, Size, Position and More&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;This Article is being written at this time, Check Back Later.  Feel Free to use the Tool linked to Above, even Without the detailed instructions I will publish here, it works quite nicely.&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-8372111015694653863?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/11/myspace-music-player-skins-position.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>6</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-4179262567841212018</guid><pubDate>Sat, 10 Nov 2007 19:45:00 +0000</pubDate><atom:updated>2008-08-04T12:27:22.181-07:00</atom:updated><title>Multiple MySpace Music Players On One Page</title><description>&lt;h1&gt;How to Place Multiple MySpace Music Players on One page by extracting the object source&lt;/h1&gt;&lt;br /&gt;&lt;b&gt;This is for the Standard Page Player NOT the Band Player&lt;/b&gt;&lt;br /&gt;(it is against the myspace terms of service to do this for the band page player).&lt;br /&gt;&lt;br /&gt;Step 1)&lt;br /&gt;View Source&lt;br /&gt;&lt;br /&gt;Step 2)&lt;br /&gt;Search for this word:&lt;br /&gt;lads&lt;br /&gt;&lt;br /&gt;You will find a line of code that looks like this:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;var s = &amp;quot;http://lads.myspace.com/mini/mini.swf?b=MTE5NDA1NjI1&amp;amp;o=ODU4ODE3NTc=&amp;amp;d=MTIxNzg3NzAzMw==&amp;amp;i=MzI4NDgwMDMy&amp;amp;a=RmFsc2U=&amp;amp;u=LTE=&amp;quot;;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;You want everything that is between the quotes&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;http://lads.myspace.com/mini/mini.swf?b=MTE5NDA1NjI1&amp;amp;o=ODU4ODE3NTc=&amp;amp;d=MTIxNzg3NzAzMw==&amp;amp;i=MzI4NDgwMDMy&amp;amp;a=RmFsc2U=&amp;amp;u=LTE=&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Now you want to use the below code block and REPLACE &lt;b&gt;YOUR-URL&lt;/b&gt; (both occurrences) with the above string.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;object type=&amp;quot;application/x-shockwave-flash&amp;quot; allowScriptAccess=&amp;quot;never&amp;quot; allowNetworking=&amp;quot;all&amp;quot; height=&amp;quot;51&amp;quot; width=&amp;quot;295&amp;quot; data=&amp;quot;&lt;b&gt;YOUR-URL&lt;/b&gt;&amp;quot;&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;wmode&amp;quot; value=&amp;quot;transparent&amp;quot; /&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;allowScriptAccess&amp;quot; value=&amp;quot;never&amp;quot; /&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;allowNetworking&amp;quot; value=&amp;quot;all&amp;quot; /&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;movie&amp;quot; value=&amp;quot;&lt;b&gt;YOUR-URL&lt;/b&gt;&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/object&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;I end up with the following:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;object type=&amp;quot;application/x-shockwave-flash&amp;quot; allowScriptAccess=&amp;quot;never&amp;quot; allowNetworking=&amp;quot;all&amp;quot; height=&amp;quot;51&amp;quot; width=&amp;quot;295&amp;quot; data=&amp;quot;http://lads.myspace.com/mini/mini.swf?b=NTAxNTU1NTQ=&amp;amp;o=MTY1MDY3NTAy&amp;amp;d=MTIxNDUzMzE0Nw==&amp;amp;i=MzI4NDgwMDMy&amp;amp;a=RmFsc2U=&amp;amp;u=MzI4NDgwMDMy&amp;quot;&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;wmode&amp;quot; value=&amp;quot;transparent&amp;quot; /&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;allowScriptAccess&amp;quot; value=&amp;quot;never&amp;quot; /&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;allowNetworking&amp;quot; value=&amp;quot;all&amp;quot; /&amp;gt;&lt;br /&gt;  &amp;lt;param name=&amp;quot;movie&amp;quot; value=&amp;quot;http://lads.myspace.com/mini/mini.swf?b=NTAxNTU1NTQ=&amp;amp;o=MTY1MDY3NTAy&amp;amp;d=MTIxNDUzMzE0Nw==&amp;amp;i=MzI4NDgwMDMy&amp;amp;a=RmFsc2U=&amp;amp;u=MzI4NDgwMDMy&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/object&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;You can now place this object code, where you want this player to show up on your page.&lt;br /&gt;&lt;br /&gt;If you want to apply a skin, you need to wrap the object code in a div, give the div a class, and apply the skin to the div class.&lt;br /&gt;(I might help you with this if you ask.)&lt;br /&gt;&lt;br /&gt;Once you are finished, you can then change your default player to a new song, and repeat the process.&lt;br /&gt;&lt;br /&gt;I have tested this with up to three players. (2 players copied and placed using the above code, and the other set as the song to show on my profile).&lt;br /&gt;&lt;br /&gt;The above strategy can also be used to send the player to others, post in a comment, send in a bulletin and more.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-4179262567841212018?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/11/multiple-myspace-music-players-on-one.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>3</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-1826172650606524396</guid><pubDate>Wed, 17 Oct 2007 18:10:00 +0000</pubDate><atom:updated>2009-03-08T19:35:28.233-07:00</atom:updated><title>Comcast Voice Over IP WARNING Do Not Purchase</title><description>&lt;span class="mainH"&gt;WARNING: If you are Considering Comcast Voice Over IP &lt;/span&gt;&lt;br /&gt;&lt;span style="color:darkred; background-color:#FCEAFC; font-size:18px; font-family:comic sans"&gt;&lt;br /&gt;Incoming Calls have a HIGH rate of just not coming through. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Initially I saw it as a relief from the flood of sales calls, and thought maybe my entry on the "do not call" list was finally taking effect.  &lt;br /&gt;Then I realized that people who had tried to call me, had been sent to voice mail, and my phone never even rang, to indicate an incoming call.  &lt;br /&gt;I also tried tests from my own cell phone, and the result was I was sent to voice mail without my phone even ringing.  &lt;br /&gt;My internet connection was working just fine at the time, for other internet activity.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;The above problem has cleared up, I am not longer experiencing missed calls (that I know of).&lt;/b&gt;  The sales calls continue to flood in.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:darkred; background-color:#FCEAFC; font-size:18px; font-family:comic sans"&gt;&lt;br /&gt;Your Number will be Sold to Telemarketers possibly FASTER than you can get the number distributed to your own Friends and Family. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Before I had even distributed my new number to my friends and family, I started getting sales calls. &lt;br /&gt;The sales calls have been flooding in at an increasing rate.&lt;br /&gt;&lt;br /&gt;I did add the new number to the do not call registry, but that process takes longer than it took Comcast to have my number distributed to several Telemarketers.  &lt;br /&gt;&lt;br /&gt;I even got a sales call from a Comcast Competitor, for satellite Television.  I was very tempted, but I boycott companies which do phone solicitations and NEVER allow the actual phone solicitation to lead to the my helping a company profit.&lt;br /&gt;Why?&lt;br /&gt;This is one of those externalities that companies are not required to pay for.&lt;br /&gt;They NEVER compensate me for the time lost due to the interruption.  &lt;br /&gt;They take up the time of hundreds of people, and if they get just one sale after thousands of calls, they still profit.  As for those who didn't buy; we are a non factor, something they care nothing about.&lt;br /&gt;Do they care that I must turn off my ringer, which results in my phone being of minimal value to me.  No they don't.  They only care about that sale they  might make.  &lt;br /&gt;&lt;br /&gt;My Advice:&lt;br /&gt;&lt;span style="color:darkred; background-color:#FCEAFC; font-size:20px; font-family:comic sans"&gt;&lt;br /&gt;DO NOT PURCHASE Voice Over IP from Comcast Cable&lt;/span&gt;&lt;br /&gt;The price goes up to $44.99 very quickly.  Vontage is so much cheaper.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So for now, the only service I really need from comcast in the internet (no one else is fast enough, in my area, at this time).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-1826172650606524396?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/10/warning-if-you-are-considering-comcast.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>10</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-4595828494862760790</guid><pubDate>Sun, 23 Sep 2007 00:03:00 +0000</pubDate><atom:updated>2007-09-24T10:03:55.130-07:00</atom:updated><title>Finding a simple Counter Dilema</title><description>&lt;span class="mainH"&gt;My Counter Dilema, Deceptive advertising.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;[update: I was actually impressed with the service I got from amazing counters, once I had emailed them.  This doesn't address the issue of the deception in the sponsor choices, but at least they were quick to respond to my email, and willing to help me obtain a sponsor I was comfortable using.]&lt;br /&gt;&lt;br /&gt;I recently did a comparison of several internet counter services.  I was looking for simple counters, which did NOT include tracking.  These exist and often consist of a simple image file (gif or png); which is updated by the site, each time the file is accessed.&lt;br /&gt;I needed counter code which would not be rejected by sites which filter out script code and many useful dynamic html commands.  &lt;br /&gt;&lt;br /&gt;Any page which started throwing pop-ups was ruled out (I have some pop-up blocking turned on, and I don't want to do any further blocking).  &lt;br /&gt;Any page which started sending out irritating noises was ruled out.  I use my computer to listen to music.&lt;br /&gt;&lt;br /&gt;At one point I thought I had found the perfect counter site.&lt;br /&gt;The site didn't send me into pop-up hell, or make irritating noises as the pages of their competitors seemed to.&lt;br /&gt;They had a good selection of counter designs, including one which looked like LEGO (my favorite toy).&lt;br /&gt;They offered a simple counter option, which consisted of a simple png file, so it was not going to be rejected by myspace and other web page hosting services which reject counters with any real content to them.&lt;br /&gt;&lt;br /&gt;Of course I understand that advertising is what makes the service free, so I accepted that I would have to take an ad with my coutner.&lt;br /&gt;I did not like the initial sponsor my counter was assigned.  So I selected the option to choose a new sponsor.  &lt;br /&gt;Selecting a sponsor is a semi-random process, where I continually select new sponsor until I get the one I want.  Several came up multiple times, before the list had completed.  So maybe it is random with different probabilities assigned to different sponsors. &lt;br /&gt;Going through their list of sponsors, I found several I actually do business with.  &lt;br /&gt;I even found a sponsor, for cupons, to a site owned by the company which employs me.  But I continued through the list.&lt;br /&gt;At one point I thought I found the perfect sponsor, there was a choice to choose the counter site (the one I was on) as my sponsor.&lt;br /&gt;I thought this would be perfect; if someone is clicking on a link, next to my counter, why not take them to a site where they can get the same counter.&lt;br /&gt;&lt;br /&gt;So I selected the counter site, and proceeded to the step which generates the code.&lt;br /&gt;&lt;br /&gt;What did I notice?&lt;br /&gt;While my sponsor link did say "amazing counters" hidden in there was an ad for Dell Computers.  My counter image (which is much larger than my sponsor link)  was turned into a link to a Dell Computer site, even after I did NOT select Dell as my sponsor.&lt;br /&gt;While I have no real issue with advertising Dell Computers (although it is a major competitor of the company which employs me), I did not like the sneaky way it became my true sponsor, AFTER I choose to select something else.&lt;br /&gt;Why was the counter site sneaky about this?  Why even have amazing counters in the sponsor list, if selecting this leads to the assignment of a different sponsor?&lt;br /&gt;&lt;br /&gt;After realizing that my sponsor was Dell, and not amazing counters (as I had selected) I went back to the sponsor selection.&lt;br /&gt;I proceeded to look for a specific sponsor I had seen earlier in the list.  After HUNDREDS of clicks, it did not come up again.  I was about to give up and select another sponsor, which I was ok with.&lt;br /&gt;I selected ToysRUs-cupons.  Did this link take me to a site associated with ToysRus?  Of course not.  It was a general cupon site, with Dell on the top of the list.&lt;br /&gt;If one scrolled down, ToysRus cupons were available, as were several of the other companies, I had seen cupon links for in the "select sponsor" process.&lt;br /&gt;In the meantime, I had become just irritated enough, that I had used the "send us a message" functionality. &lt;br /&gt;I went back to the "select sponsor" and continued the process.&lt;br /&gt;Eventually, it came up, what I thought was a link to the company I work for (or at least their online shopping service).  Maybe I hadn't noticed the word cupon after it before, and maybe that was what I saw before.&lt;br /&gt;I went ahead and tried out the link (if I was going to have this link on my site, I needed to check it out).  At least it was what it claimed to be, and the first cupons offered, were for the shopping site which sells the products made by the company I work for.  (The links to get Dell cupons were off to the side).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;Dilema 1)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Will I continue to have amazing counters as the counter service I recommend to people?&lt;br /&gt;It is still my favorite online counter service.  (OK, sneaky sponsor assignment is less undesireable than pop-ups and noise).&lt;br /&gt;&lt;br /&gt;I could write my own counter service, and offer it to those who ask me where to get counters.  But not today, and it will take a significant chunk of time to come up with a variety of counter designs. &lt;br /&gt;&lt;br /&gt;If I do decide to write my own, For the short term, do I continue to use amazing counters?&lt;br /&gt;Do I continue to recommend amazing counters.?&lt;br /&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;Dilema 2)&lt;/span&gt;&lt;br /&gt;Assuming I continue to use amazing counters;&lt;br /&gt;Do I select a sponsor which offers cupons for products sold by my own employer, or a site which pushes products made by the competition?&lt;br /&gt;&lt;br /&gt;There was a time when this answer would have been obvious to me.  There was a time when I cared if the company, which employs me, did well.  There was a time when if the company did well, all the employees were rewarded.&lt;br /&gt;But the company has made many changes. &lt;br /&gt;The company no longer treats the majority of its employees as valued assets.  &lt;br /&gt;No longer do the majority of the employees have any vested interest in the performance of the company.  There is a new philosophy that only a small handful of employees are really adding much value at all, and the rest of us are easy to throw away and replace.&lt;br /&gt;They pay me (and pretty well). I do the work I am assigned, and struggle to maintain the same level of work habits I had when I felt more valued.  I owe them honest work in return for that pay.  My loyalty goes no further.  &lt;br /&gt;But for some reason, I just don't feel right having a major competitor as my counter sponsor, although I feel free to do so.&lt;br /&gt;&lt;br /&gt;(I know it is easy to alter the code, and remove the sponsor, but I want to stay within the terms of service, if I am going to install code from another site).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-4595828494862760790?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/09/finding-simple-counter-dilema.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>17</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-4787181519901484303</guid><pubDate>Thu, 13 Sep 2007 18:54:00 +0000</pubDate><atom:updated>2009-01-17T10:55:56.359-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>myspace apps moving positioning</category><title>positioning and moving myspace apps</title><description>&lt;h1&gt;Moving, Sizing and Coloring myspace Apps&lt;/h1&gt; &lt;br /&gt;&lt;br /&gt;&lt;span class="myNoteL"&gt;&lt;br /&gt;I highly recommend upgrading to myspace 2.0.  In 2.0 you can position your apps by dragging then, in the provided myspace profile customize tool. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You can also address each app independently for styling.&lt;br /&gt;&lt;br /&gt;I will add instructions here, related to how to locate the id of a single app (in myspace 2.0) if anyone is really interested.  &lt;br /&gt;For now I am not sure what people are interested in, and my time is limited.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;The below code is still relevant for myspace 1.0 and Artist/band pages&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;A HREF="#General1"&gt;Styling Apps, General Information and Limitations&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#General"&gt;Moving Apps, General Information and Limitations&lt;/A&gt;&lt;br /&gt;&lt;b&gt;Code Examples&lt;/b&gt;&lt;br /&gt;&lt;A HREF="#Sizing"&gt;Sizing Apps&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#Coloring"&gt;Coloring a Right Side App to blend in with your profile&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#leftAppToTopLeft"&gt;Move a Single Left Side App To Top Left&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#rightAppToTopRight"&gt;Move a Single Right Side App To Top Right&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#rightAppToTopCenter"&gt;Move a Single Right Side App To Top Center&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#rightAppToTopLeft"&gt;Move a Single Right Side App To Top Left&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#rightAppAboveAboutMe"&gt;Move a Single Right Side App Above About Me&lt;/A&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="General1"&gt;Styling Apps, General Information and Limitations&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;MySpace recently (May or June 2008) added a class to the App tables.&lt;br /&gt;This makes styling them much easier, however, the apps are all still in the SAME class, therefore All Right side Apps must have the same style as each other right side apps.  The same goes for Left side Apps.  &lt;br /&gt;&lt;br /&gt;All Apps can be addressed like this:&lt;br /&gt;table table table.userProfileApp&lt;br /&gt;&lt;br /&gt;Right side apps can also be addressed like this:&lt;br /&gt;table table td.text table.userProfileApp&lt;br /&gt;&lt;br /&gt;This means that we can address the right side apps independently of other elements.&lt;br /&gt;We can address Left side apps, and then do an override for right side apps.&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="Sizing"&gt;Sizing Apps&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;The below code block, will alter the width of ALL right side apps.&lt;br /&gt;This code is useful in a skinny profile.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;This will distort how some apps appear.&lt;/b&gt;  We can resize the app container, but we have no control over the actual iframe content.  If this content assumes a larger app frame size, it may distort.  &lt;br /&gt;This has been tested, and worked well on the truth box app on my own profile.&lt;br /&gt;&lt;br /&gt;This code can be placed at the very top OR very bottom of the about me or to meet section.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i &lt;br /&gt;href=&amp;quot;xiii.us/ms/moving-apps&amp;quot;&amp;gt;Size MySpace Right Side Apps Code By Eileen&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;x.i i, .i {display:none;}&lt;br /&gt;table table td.text table.userProfileApp, &lt;br /&gt;table table td.text table.userProfileApp * {width:300px !important;}&lt;br /&gt;table table td.text table.userProfileApp div,&lt;br /&gt;table table td.text table.userProfileApp div * {width:auto !important; }&lt;br /&gt;table table td.text table.userProfileApp div div img,&lt;br /&gt;table.userProfileApp div.xiii {width:6px; height:7px}&lt;br /&gt;table table td.text table.userProfileApp div {height:13px !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="Coloring"&gt;Coloring a Right Side App to blend in with your profile&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i &lt;br /&gt;href=&amp;quot;xiii.us/ms/moving-apps&amp;quot;&amp;gt;Size MySpace Right Side Apps Code By Eileen&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;x.i i, .i {display:none;}&lt;br /&gt;{! change magenta to the color you want to get the desired look !}&lt;br /&gt;table table td.text table.userProfileApp {background-color:magenta !important;} &lt;br /&gt;table table td.text table.userProfileApp *,&lt;br /&gt;table.userProfileApp div.x i i.i {background-color:transparent !important;}&lt;br /&gt;{! you can adjust the below value as desired, depending on how much blend you want !}&lt;br /&gt;table.userProfileApp {opacity:0.6; filter:alpha(opacity:60)}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="General"&gt;Moving Apps, General Information and Limitations&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;- You must have ONLY ONE App on the Right, and/or One on the Left&lt;br /&gt;OR &lt;br /&gt;- You must be willing to move the Apps as a group.&lt;br /&gt;&lt;br /&gt;- The App should be a static size, OR you must allow enough room for the largest size you expect the App to expand to.&lt;br /&gt;(Some Apps are very dynamic in length).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="leftAppToTopLeft"&gt;Move a Single Left Side App To Top Left&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;Suppose I want to move a Left side App to the very top of the Left Side?&lt;br /&gt;First I create space for the app, above the profileInfo table.&lt;br /&gt;Then I use absolute (or relative) positioning to move the App into the space.&lt;br /&gt;My first example will use absolute positioning.  &lt;br /&gt;Because, in this case, I am moving over elements which are very static in size, this works well.&lt;br /&gt;&lt;br /&gt;Place this code at the top of your about me (or any other section which accepts html code)&lt;br /&gt;&lt;b&gt;You will need to alter the px values, based on the size of your app.&lt;/b&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/ms1/&amp;quot;&amp;gt;&lt;br /&gt;MySpace Code and Tutorials by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{! move left side app to top of left column !}&lt;br /&gt;.i {display:none;}&lt;br /&gt;{! create space above profileInfo for app !}&lt;br /&gt;table.profileInfo {margin-top:280px;}&lt;br /&gt;&lt;br /&gt;table table table.userProfileApp {position:absolute; top:170px; right:50%; margin-right:80px}&lt;br /&gt;&lt;br /&gt;{!reverse effect on right side apps!}&lt;br /&gt;table table td.text table.userProfileApp {position:static; margin-right:0px;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="rightAppToTopRight"&gt;Move a Single Right Side App To Top Right&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Place this code at the &lt;b&gt;Bottom of the To Meet&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;xiii.us/ms1/&amp;quot;&amp;gt;&lt;br /&gt;MySpace Code and Tutorials by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{! create space above main table !}&lt;br /&gt;table.extendedNetwork {margin-top:400px}&lt;br /&gt;&lt;br /&gt;.i {display:none;}&lt;br /&gt;{! move right side app to top right of page !}&lt;br /&gt;table table td.text table.userProfileApp {position:absolute; top:170px; right:50%; margin-right:-385px ; }&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="rightAppToTopCenter"&gt;Move a Single Right Side App To Top Center&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;Use the Below code block, for placing a right side app top Left, and alter the margin-right value to about -225px.&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="rightAppToTopLeft"&gt;Move a Single Right Side App To Top Left&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;Place this code at the very &lt;b&gt;Bottom of the To Meet&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;xiii.us/ms1/&amp;quot;&amp;gt;&lt;br /&gt;MySpace Code and Tutorials by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{! create space above main table !}&lt;br /&gt;table table {margin-top:400px}&lt;br /&gt;.i {display:none}&lt;br /&gt;{! move right side app to top left of page !}&lt;br /&gt;table table td.text table.userProfileApp {position:absolute; top:170px; right:50%; margin-right:-50px ; }&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Notice that the above creates a blank space to the right of the App?&lt;br /&gt;This was necessary because the right side apps are wider than the left column, and one can NOT make them smaller (due to the size of the iframe inside the app, and the fact that myspace blocks any code using the keyword iframe).&lt;br /&gt;&lt;br /&gt;A solution to this problem, is to move other elements into this location.&lt;br /&gt;I like to choose elements which are reasonably static in size.  &lt;br /&gt;My elements of choice tend to be the Status box (the old extended network) and the contact table.&lt;br /&gt;The below code will move the status Box and contact table, to the right of the App (the one I just moved to the top left).&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;xiii.us/ms1/&amp;quot;&amp;gt;&lt;br /&gt;MySpace Code and Tutorials by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table.extendedNetwork {position:absolute; top:170px; right:50%; margin-right:-385; width:300px; height:200px}&lt;br /&gt;&lt;br /&gt;table.contactTable {position:absolute; top:390px; right:50%; margin-right:-385px;}&lt;br /&gt;.i {display:none;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="rightAppAboveAboutMe"&gt;Move a Single Right Side App Above About Me&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Solution removed, new solution coming soon&lt;/b&gt;&lt;br /&gt;You can just use the solution for placing the app top right, and adjust the values.&lt;br /&gt;This does assume a static blog size (or blogs removed).&lt;br /&gt;&lt;br /&gt;Or just use relative movement to move it up.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;More Examples Coming Soon&lt;/b&gt;(If I think there is enough interest to make it worth my time to write them up).&lt;br /&gt;&lt;br /&gt;&lt;div class="myQuerySpan"&gt;Thank you for Visiting, Have a Nice day&lt;br /&gt;&lt;/br&gt;&lt;br /&gt;moving myspace truth box.&lt;br /&gt;Put myspace truth box on top.&lt;br /&gt;Move buy your friends app on myspace.&lt;br /&gt;Truth Box and buy Your friends, moving them on myspace.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-4787181519901484303?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/09/positioning-and-moving-myspace-apps.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>25</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-1745584254841502240</guid><pubDate>Thu, 06 Sep 2007 18:23:00 +0000</pubDate><atom:updated>2009-02-24T09:55:59.096-08:00</atom:updated><title>MySpace code Changes, Problems, Fixes</title><description>&lt;b&gt;24 February 2009&lt;/b&gt;&lt;br /&gt;problems with code in headline:&lt;br /&gt;&lt;br /&gt;On the the private profile, tag syntax, is being converted to the text equivalent.&lt;br /&gt;This means it will show up as text, instead of behaving as tags.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I HIGHLY RECOMMEND upgrading to myspace  2.0 &lt;/b&gt;&lt;br /&gt;It has far better privacy options, including hiding last login.&lt;br /&gt;Almost all customizing tasks are easy.&lt;br /&gt;&lt;br /&gt;It is also easy (using an overlay strategy) to create a profile that looks different for friends and non friends.&lt;br /&gt;Once you set it to make last-login private, you can still hide the text that says&lt;br /&gt;&lt;br /&gt;last login:private&lt;br /&gt;&lt;br /&gt;&lt;b&gt;{! hide last login !}&lt;br /&gt;li.lastlogin {display:none;}&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;put that in the css area&lt;br /&gt;&lt;br /&gt;To hide the entire section, that contains the age, gender, location, last login, online icon, use the following&lt;br /&gt;&lt;br /&gt;&lt;b&gt;{! hide age, gender, location, last login, online !}&lt;br /&gt;ul.profileUserInfo {display:none;}&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The cool thing is, that even when users turn off style, or do a view source, they will only see that this information is set to private.  They will not see the values.&lt;br /&gt;&lt;br /&gt;So if hiding this information matters to you, you probably should switch to myspace 2.0.&lt;br /&gt;&lt;br /&gt;I will write more about this after work today.  But my guess is that someone (who does not have to work today) will have some solutions published sooner then I will.&lt;br /&gt;Probably multiple people.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;26 September 2008&lt;/b&gt;&lt;br /&gt;Music Player Changes.&lt;br /&gt;Depth has changed&lt;br /&gt;&lt;br /&gt;band page:&lt;br /&gt;table table td.text div div object&lt;br /&gt;OR&lt;br /&gt;table table td.text div div embed&lt;br /&gt;&lt;br /&gt;Standard Page:&lt;br /&gt;table table div div object&lt;br /&gt;or&lt;br /&gt;table table div div embed&lt;br /&gt;&lt;br /&gt;object versus embed depends on browser.&lt;br /&gt;&lt;br /&gt;I have not updated my code for the standard player yet, but this guy has:&lt;br /&gt;&lt;a href="http://abrax.us/bbz/MyspaceSongPlayer.php?page=hide"&gt;Standard Player Hide&lt;/a&gt;&lt;br /&gt;He covers both the official myspace way (which won't allow the music to play on your profile) AND the custom way, which allows the music to player on your profile.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The new music player gives users the option to add play lists, I like these.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Band Page Side Effect&lt;/b&gt;&lt;br /&gt;If you have done anything with your shows, by addressing their div, this will now effect your band player&lt;br /&gt;I highly recommend removing your shows from any scroll box.  &lt;br /&gt;&lt;br /&gt;If you want to place your shows, instead of addressing by the div, address by the table.&lt;br /&gt;i.e.&lt;br /&gt;&lt;br /&gt;table table td.text div table{ style in here }&lt;br /&gt;&lt;br /&gt;You can address and move the music player by addressing the 2nd div&lt;br /&gt;table table td.text div div {style in here}&lt;br /&gt;&lt;br /&gt;I have updated the code here:&lt;br /&gt;&lt;a href="http://views-under-construction.blogspot.com/2006/01/myspace-band-music-player-color-skin.html"&gt;Band Page Music Player Hide, Move, Position, Color&lt;/a&gt;&lt;br /&gt;But I still have more work to do.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Common problem on Standard pages&lt;/b&gt;&lt;br /&gt;For people who have the bottom links hidden, addressing the &lt;br /&gt;table div div&lt;br /&gt;Remove that code, it will hide your music player.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Bug related to my music player skin code&lt;/b&gt;&lt;br /&gt;Some versions of my code had an unDo at level &lt;br /&gt;table table div div&lt;br /&gt;That must be removed, now that the player is another div deep.&lt;br /&gt;I added that for users who had applied custom div overlays, putting some of their custom div content at that depth.&lt;br /&gt;These users will now need to insure that their custom div has a class, and apply the undo specifically to that class.&lt;br /&gt;&lt;br /&gt;I have fixed this in my code generator.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What I plan to Fix&lt;/b&gt;&lt;br /&gt;My music player skin generators, both standard and band to take full advantage of the new code.  The bug in the standard player has been fixed.&lt;br /&gt;Band player skins just got way easier.&lt;br /&gt;&lt;br /&gt;For each blog article effected, I will remove it or update it (I haven't decided yet).&lt;br /&gt;&lt;br /&gt;I have plans for this weekend and won't have much time to write code.&lt;br /&gt;&lt;br /&gt;So much to do, so little time.&lt;br /&gt;&lt;br /&gt;===============================================================================&lt;br /&gt;&lt;br /&gt;&lt;b&gt;June 19 2008&lt;/b&gt;&lt;br /&gt;Major change to top menu area, gotta love it.&lt;br /&gt;&lt;br /&gt;Seriously, I will come up with code fixes, sometime tonight.&lt;br /&gt;&lt;br /&gt;For now I have to concentrate on the work I get paid to do &lt;br /&gt;(which is not this, because this code always gets stolen, and serves only to profit others besides myself).&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Jan 18 2008&lt;/b&gt;&lt;br /&gt;Mucking with the select short cut thing again.  As before, I recommend just getting used to the thing, it is not really that bad.&lt;br /&gt;Several things still work to hide it or move it. &lt;br /&gt;Margins, opacity, even left and right movement via position:absolute.&lt;br /&gt;They put an important after the static, and I don't exactly understand why I can override that with more explicit addressing, yet not override the top:inherit.&lt;br /&gt;&lt;br /&gt;For some tips on styling this thing, to make it more palatable, go here:&lt;br /&gt;&lt;a href="http://views-under-construction.blogspot.com/2007/03/myspace-top-ad-banner-search-area.html#FormStyle"&gt;Style search and short cut things&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Jan 13 2008&lt;/b&gt;&lt;br /&gt;It is my Birthday Today.  I am in DisneyLand.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dec 1 2007&lt;/b&gt;&lt;br /&gt;Since they didn't back out the junk they added around the extendedNetwork table ...&lt;br /&gt;(maybe they are taking the weekend off)  I will publish some fixes.&lt;br /&gt;&lt;br /&gt;I have tried to do this in a way, which will still work if they back the change out.&lt;br /&gt;&lt;span class="mainStep"&gt;IF you want to display the extendedNetwork (status feature box) and REMOVE the extra space created in that space &lt;/span&gt;&lt;br /&gt;The below works well if you have used&lt;br /&gt;&lt;b&gt;table table table {style stuff in here}&lt;/b&gt;&lt;br /&gt;to assign your borders and/or background to each of the content tables.&lt;br /&gt;&lt;br /&gt;If you have assigned your desired border directly to&lt;br /&gt;&lt;b&gt;table.extendedNetwork&lt;/b&gt;&lt;br /&gt;Omit (do not use) the line of code I have marked as &lt;b&gt;OPTIONAL:&lt;/b&gt;&lt;br /&gt;to assign borders and/or background to all of your main content tables. &lt;br /&gt;This code does works even if you are displaying a Calendar.&lt;br /&gt;Place this code at the end of the "To Meet" section:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;i class=i&amp;gt;Remove new junk around extendedNetwork&lt;br /&gt;&amp;lt;a href=&amp;quot;http://www.msplinks.com/MDFodHRwOi8veGlpaS51cy9tcy9maXhlcw==&amp;quot;&amp;gt;&lt;br /&gt;mySpace code change fixes by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;/i&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;&lt;br /&gt;.i {display:none !important;}&lt;br /&gt;&lt;br /&gt;td.text table table {display:none;}&lt;br /&gt;td.text table table.extendedNetwork {display:inline;}&lt;br /&gt;td.text table.blurbs table,&lt;br /&gt;td.text div.myDivFC table,&lt;br /&gt;div.myDivFC td.text table {display:block;}&lt;br /&gt;&lt;br /&gt;{! control space ! }&lt;br /&gt;td.text br {display:none}&lt;br /&gt;td.text table br {display:inline;}&lt;br /&gt;td.text div.myDivFC br {display:inline;}&lt;br /&gt;td.text table {margin-top:15px; margin-bottom:5px;}&lt;br /&gt;td.text table table {margin-top:0px; margin-bottom:0px;}&lt;br /&gt;&lt;br /&gt;{! OPTIONAL:border within extendedNetwork !}&lt;br /&gt;table.extendedNetwork, table.extendedNetwork td {border:0px !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;div class=&amp;quot;myDivFC&amp;quot; &amp;gt;&lt;br /&gt;&amp;lt;table class=&amp;quot;i&amp;quot; &amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&lt;br /&gt;&amp;lt;table&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;IF you want your extendedNetwork (status feature box) and any extra space created in that space, Gone &lt;/span&gt;&lt;br /&gt;There are a few ways to get rid of this one.&lt;br /&gt;Because I fully expect extra content to show up in the extra table they created below the status, I am going to recommend this one.&lt;br /&gt;This Code will not remove, hide, or otherwise mess with your Calendar&lt;br /&gt;Put this code at the bottom of the meet section:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;i class=i&amp;gt;Remove extendedNetwork ad junk around it&lt;br /&gt;&amp;lt;a href=&amp;quot;http://www.msplinks.com/MDFodHRwOi8veGlpaS51cy9tcy9maXhlcw==&amp;quot;&amp;gt;&lt;br /&gt;mySpace code change fixes by Eileen&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;/i&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;.i {display:none !important;}&lt;br /&gt;td.text table {display:none;}&lt;br /&gt;td.text table.blurbs, td.text table.blurbs table,&lt;br /&gt;td.text table.latestBlogEntry {display:block;}&lt;br /&gt;td.text div.myDivFC table,&lt;br /&gt;div.myDivFC td.text table {display:block;}&lt;br /&gt;&lt;br /&gt;td.text br {display:none}&lt;br /&gt;td.text table br {display:inline;}&lt;br /&gt;td.text div.myDivFC br {display:inline;}&lt;br /&gt;&lt;br /&gt;td.text table.blurbs, &lt;br /&gt;td.text table.latestBlogEntry {margin-top:15px; margin-bottom:5px;}&lt;br /&gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;div class=&amp;quot;myDivFC&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;table class=&amp;quot;i&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&lt;br /&gt;&amp;lt;table&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;Extra border or Background around extendedNetwork&lt;/span&gt;&lt;br /&gt;In this case you have kept the extendedNetwork (where the status message is) but you have an extra border or space around it.&lt;br /&gt;&lt;br /&gt;The table that mySpace added does NOT have any border or background color defined.&lt;br /&gt;If you are seeing this, it is coming from your own style code.&lt;br /&gt;The most common cause (that I have seen) is to have set some sort of style (border and/or background) for ALL tables which are three tables deep.&lt;br /&gt;&lt;br /&gt;Look for this:&lt;br /&gt;&lt;pre class="rcode"&gt;&lt;code&gt;table table table { some stuff to assign border and/or background }&lt;/code&gt;&lt;/pre&gt;You may have something equivalent but with slightly different syntax:&lt;br /&gt;td td table&lt;br /&gt;table td table td table&lt;br /&gt;body table td table td table&lt;br /&gt;There are others as well.&lt;br /&gt;&lt;br /&gt;Replace it with this:&lt;pre class="codeline"&gt;&lt;code&gt;&lt;br /&gt;table.profileInfo,&lt;br /&gt;table.contactTable,&lt;br /&gt;table.userProfileURL,&lt;br /&gt;table.InterestsAndDetails,&lt;br /&gt;table.userProfileDetail,&lt;br /&gt;table.userProfileSchool,&lt;br /&gt;table.userProfileCompany,&lt;br /&gt;table.userProfileNetworking,&lt;br /&gt;table.extendedNetwork,&lt;br /&gt;table.latestBlogEntry,&lt;br /&gt;table.blurbs,&lt;br /&gt;table.friendSpace,&lt;br /&gt;table.friendsComments,&lt;br /&gt;table.myBlurbs { the same style stuff you had for table table table }&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;You have extra space above and below&lt;/span&gt;&lt;br /&gt;My suggestion is to either accept the space for now, and wait;&lt;br /&gt;OR to remove some of the carriage returns and take control over the space between the tables yourself.&lt;br /&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;An Inner border has showed up inside my Extended Network Space&lt;/span&gt;&lt;br /&gt;This is likely caused by having assigned an outer border at level &lt;br /&gt;&lt;b&gt;table table table&lt;/b&gt;&lt;br /&gt;Because the extendedNetwork was at this level, this did an override of the border being assigned to the extendedNetwork by the myspace code.&lt;br /&gt;You can now remove the default border as follows:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table.extendedNetwork, table.extendedNetwork td {border:0px !important}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Nov 30 2007&lt;/b&gt;&lt;br /&gt;extendedNetwork (where the status now goes) has the same issue as it had for a while yesterday.  (See Yesterday's entry)&lt;br /&gt;I am not going to bother writing code to deal with it until it remains in place for at least 24 hours.  (Yes this means if it is there when I get up tomorrow, I deal with it).&lt;br /&gt;&lt;br /&gt;There is an addition BR (carriage return) at the top of the right column.  There was one in the old code, and there are now two. &lt;br /&gt;&lt;br /&gt;&lt;b&gt; Nov 29 2007 &lt;/b&gt;&lt;br /&gt;&lt;b&gt;Problem with extendedNetwork is gone&lt;/b&gt;&lt;br /&gt;-- problem which was there earlier --&lt;br /&gt;An additional table has been added to enclose the extendedNetwork table (table.extenddNetwork}&lt;br /&gt;The structure has an additional table under the extendedNetwork as well.&lt;br /&gt;To see the structure look at this:&lt;br /&gt;&lt;a href="http://www.myspace.com/drhoovey"&gt;myspace page showing table structure&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is causing obvious extra space in profiles where the table has been removed.&lt;br /&gt;It is not so obvious in other profiles.  &lt;br /&gt;This puts the extendedNetwork table (where our status now is) down another table deep.&lt;br /&gt;table table td.text table table.extendedNetwork.&lt;br /&gt;The table underneath extendedNetwork will take up space.&lt;br /&gt;It has a few cells in it.&lt;br /&gt;&lt;br /&gt;I am not going to give out any code to fix it until I see what they are doing.&lt;br /&gt;My guess is that they will move up the extendedNetwork class.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;~ Nove 2007 Music Player issues &lt;/b&gt;&lt;br /&gt;Changes to the music player code have resulted in some people having their music player hidden behind other content (sometimes it is a clear layer of something, and the symptom is that the buttons do not work).  &lt;br /&gt;The fix is to add a z-index to the code line you use to position your player.&lt;br /&gt;&lt;br /&gt;i.e. &lt;br /&gt;table table div object, table table div embed {position:absolute; top:Ypx; left:whatever; &lt;b&gt;z-index:9&lt;/b&gt;}&lt;br /&gt;&lt;br /&gt;Based on this change, it is not much much easier to add skin or coloring to the player.  &lt;br /&gt;If interested see this:&lt;br /&gt;&lt;a href="http://views-under-construction.blogspot.com/2007/11/myspace-music-player-color-skin-band.html"&gt;Add color myspace music player&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;9 Nov 2007&lt;/b&gt; &lt;h1&gt;Resizing Music Player&lt;/h1&gt; Broken.  I have no idea when this change occurred.  Instead of shrinking the player, the effect of a resize is now to trim sections off of the player, so that only a fraction of the player shows.  &lt;br /&gt;I don't know if there is a solution, as I don't have a lot of time to play with it right now. &lt;br /&gt;For now, I have fixed the situation, on my own pages, by clipping the player down to just a button and placing it just to the left of the Ad banner.&lt;br /&gt;I have the code here:&lt;br /&gt;&lt;a href="http://views-under-construction.blogspot.com/2006/01/myspace-music-player.html"&gt;MySpace music player hide, resize, move&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;2 Nov 2007&lt;/b&gt; &lt;h1&gt;Short Cut Links Change Again&lt;/h1&gt;&lt;br /&gt;Is it time to just embrace this little box, as we have come to do with the ad banner?&lt;br /&gt;I see NO OTHER purpose for the code they added, except to prevent people from hiding this.  They are attempting similar changes related to the google search.  &lt;br /&gt;&lt;br /&gt;This is the block I am now using on my profiles, which is working for me:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div table div div select {position:absolute !important;  top:-200px !important; left:0px !important; }&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;I have another way that involves clip, but it is also dependent on position absolute (which I suspect they are going to break when they add one more !important to their own code).&lt;br /&gt;&lt;br /&gt;&lt;b&gt;19 Oct 2007&lt;/b&gt;: &lt;h1&gt;Short Cut links&lt;/h1&gt;&lt;br /&gt;Today's change may cause short cut links, which were previously hidden, to show up again.&lt;br /&gt;For now you can hide them like this:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div table div div select {height:0px !important; width:0px !important; padding:0px !important; position:absolute !important; top:0px !important; left:0px !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;/code&gt;&lt;/pre&gt;The above code is a slight overkill; but based on the code they added, I highly suspect that myspace does NOT want this hidden.&lt;br /&gt;On the Band page this is necessary to hide the google search drop down.  On the regular page the google search drop down is within both form and select tags.&lt;br /&gt;&lt;br /&gt;&lt;h1&gt;Google Search&lt;/h1&gt;&lt;br /&gt;For some this may have been effected.  However if you are hiding it at the form level the new code will not effect your hide code.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div table div form {display:none !important}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Another thing I noticed is more space in that area.&lt;br /&gt;I got rid of that with this:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div table div {padding:0px !important; margin:0px !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;/code&gt;&lt;/pre&gt;I noticed code that may bring back the google search stuff on some pages.  It didn't effect my pages because I rendered it display:none at the form level, they seem to be hitting it at a lower level.&lt;br /&gt;&lt;br /&gt;I am again some what baffled by the code they did add.&lt;br /&gt;Why block me from the usual way I would eliminate the block, without really preventing me from doing so.&lt;br /&gt;&lt;br /&gt;They could just tell us what we are allowed to do with this space.&lt;br /&gt;The current understanding is that we can hide everything except the ad banner.&lt;br /&gt;If mySpace wants us to not hide the google search, why not just tell us not to.&lt;br /&gt;Yes, some will still do it; but others will respect the rule.&lt;br /&gt;&lt;br /&gt;Once they decide on the rules; put this information in a message on our home page.&lt;br /&gt;&lt;br /&gt;MySpace could also structure their own code so that the stuff they do NOT want hidden  is at a higher level, with a unique class and ID assigned at the higher level.&lt;br /&gt;Placing the ad banner that deep, and at potentially multiple layers, has caused a lot of un-intentional ad banner hiding.&lt;br /&gt;The fewer layers, between the body and the ad banner, the fewer commands it will take to override the usual methods people use to hide this stuff.&lt;br /&gt;&lt;br /&gt;As for what changed;&lt;br /&gt;MySpace has added code at the bottom (after any point where we can insert an override) to do the following to the id associated with the select box. &lt;br /&gt;&lt;b&gt;visibility:visible !important&lt;br /&gt;display:inline  !important&lt;br /&gt;position:static&lt;br /&gt;width:125px&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;They further render the entire profilelinks id  all of the following:&lt;br /&gt;&lt;b&gt;visibility:visible !important&lt;br /&gt;display:inline  !important&lt;br /&gt;position:static&lt;br /&gt;padding-right:25px&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="mainH"&gt;&lt;br /&gt;10 Oct 2007: &lt;/span&gt;&lt;br /&gt;After some reasonable stability for a few days, I discovered that my demo pages, which show all of the table boundaries, nesting, parent relationships, classes and such just didn't look right.&lt;br /&gt;&lt;br /&gt;I have added coloring for the new class which showed up, along with a few other things.  &lt;br /&gt;You will better understand the changes I am about to mention if you look at this page:&lt;br /&gt;&lt;a href="http://www.myspace.com/drhoovey"&gt;MySpace page showing layout and classes&lt;/a&gt;&lt;br /&gt;[note: due to the border-spacing attribute, this page really is easier to read using FireFox.  It is ok in IE, but the boundaries are not quite as clear.  FireFox is Free and you can download it using the icon on the top of my side bar]&lt;br /&gt;&lt;br /&gt;The first thing I noticed (which I have fixed) was that my borders were overlapping, and some were not showing at all.  A quick look at the code revealed a new style sheet had been added.  &lt;br /&gt;In this style sheet I find the following command:&lt;br /&gt;&lt;b&gt;table {font:inherit; font-size:100%; color:inherit; border-collapse:collapse;}&lt;/b&gt;&lt;br /&gt;That pretty much explains the symptom I am seeing.&lt;br /&gt;&lt;br /&gt;Fix:&lt;br /&gt;I added this &lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table {border-collapse:separate}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;I did not need !important because their style sheet was added BEFORE my own code input points.&lt;br /&gt;IF I know for sure I have not set the border-collapse property, to collapse, for other tables on my page, I might use !important with the above command.&lt;br /&gt;&lt;br /&gt;One I had this fixed I was able to get a much better view of the page. &lt;br /&gt;&lt;br /&gt;Some things that I notice:&lt;br /&gt;There are additional Divs in the top area of the page:&lt;br /&gt;- Just below the ad banner  (class="clear")&lt;br /&gt;- around the google search&lt;br /&gt;- around the drop down menu they added to the left of the google search &lt;br /&gt;- below the google search  (class="clear")&lt;br /&gt;- below the main navigation menu  (class="clear")&lt;br /&gt;&lt;br /&gt;The new shortcut thing is not in a form, and is at the same depth as one of the ad banners.  &lt;br /&gt;However it is a Select, so we can hide it that way, without hiding the ad banner.&lt;br /&gt;i.e.&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div table div div select {display:none;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;We now need !important to hide the google search form.  The below will fix issues with the google search form, the new select and the extra space caused by margins assigned to that space:&lt;br /&gt;i.e.&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div table div form, div table div div select {display:none !important;}&lt;br /&gt;div table div { margin:0px !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;These are the things I was able to quickly identify.  I don't have any more time to spend on this tonight (I really wonder if myspace is a waste of time).&lt;br /&gt;&lt;br /&gt;Looking at this style sheet, I am sure there are other symptoms.&lt;br /&gt;But I don't have time to dig through it right now.  The border collapse was the most obvious issue, actually causing major symptoms on my own pages. &lt;br /&gt; &lt;br /&gt;If you have a specific symptom, you want me to look at, post a comment.  If I have time later tonight, I will have a look.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;2 Oct 2007&lt;/b&gt;: More playing around with the online now icon. Same code change that showed up in early September, and again Yesterday, but was backed out in both cases.  &lt;br /&gt;&lt;b&gt;Later that evening&lt;/b&gt;And they backed it out AGAIN.  &lt;br /&gt;&lt;br /&gt;&lt;b&gt;1 Oct 2007&lt;/b&gt;: More playing around with the online now icon. The code of early last month was there for a while, and then "poof" it was gone.&lt;br /&gt;(I have no idea how long it was there, but it wasn't there last night, and it was there tonight.)&lt;br /&gt;&lt;br /&gt;This gives me an idea.&lt;br /&gt;I should write a program to monitor the myspace code, that might even be fun.&lt;br /&gt;Nah, probably a huge waste of time, as most things myspace related are.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;30 Sep 2007: Background issues seem to be fixed but I don't trust them. &lt;/b&gt;&lt;br /&gt;Although the background issues seem to be fixed (they moved the style sheet up to before our code insert points, and removed the bodyContent class from the command); I still recommend being explicit in your own command.  This does the most to decrease the risk that myspace will be able to override your background color command:&lt;br /&gt;&lt;b&gt;body, body.bodyContent {background-color:hotpink !important}&lt;/b&gt;&lt;br /&gt;put between style tags.  Change hotpink to transparent or any other color you want to use.&lt;br /&gt;This may seem like over-kill, but can I trust them to keep the class name the same?&lt;br /&gt;Can I trust them to not again use the classname in their own code?&lt;br /&gt;While they are not likely to use !important, they might.  If they use it prior to my code, I am ok.  If they use the class, and !important, and put it AFTER our code input points, we may just have to accept their taste in color.  &lt;br /&gt;&lt;br /&gt;&lt;b&gt;26 Sep 2007:&lt;/b&gt;&lt;br /&gt;&lt;b&gt;Background Color Issues:&lt;/b&gt;&lt;br /&gt;Are the engineers who work for myspace, not capable of seeing, the effect of having this line of code in their style sheet:&lt;br /&gt;&lt;b&gt;.bodyContent{background-color:#e5e5e5;}&lt;/b&gt;&lt;br /&gt;(yea, they get to use the pound sign, but that is irrelevant to the problem.  The color e5e5e5 is a light shade of grey, and this command is in a style sheet which is applied near the end of the page).  I believe those who have used the "official" myspace profile generator, may load the custom style sheet, it creates, instead of the default, where I found this command.&lt;br /&gt;&lt;br /&gt;They are using the class name, therefore they are addressing the element more explicitly than those who just use &lt;br /&gt;body {background-color:pink}&lt;br /&gt;&lt;br /&gt;How can we get our background color to override theirs?&lt;br /&gt;Well, we have to use !important.  &lt;br /&gt;And to make sure I get a successful override, I will use the class, and !important.&lt;br /&gt;&lt;br /&gt;body.bodyContent {background-color:pink !important}&lt;br /&gt;&lt;br /&gt;Do I really get the last say?&lt;br /&gt;No, because guess where they put this style sheet.  They put it near the end.&lt;br /&gt;But as long as THEY do NOT use the keyword important, I win.  My color rules.&lt;br /&gt;&lt;br /&gt;Is this a mistake or is this a ploy to force people to use their profile generator?&lt;br /&gt;It seems to obvious to be a mistake.  But if they wanted to force me to use their generator, why did they not put in the keyword !important?&lt;br /&gt;I am baffled.&lt;br /&gt;(I might just accuse their engineers of having competency issues, but for all I know there is some valid reason for this, that I am not seeing.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;View All Friends link is no longer in span class="redlink".&lt;/b&gt;&lt;br /&gt;It is now in a div.  No class was assigned (they did assign an id, but that is useless as far as customizing goes, since myspace filters out the pound sign.).&lt;br /&gt;The div is at level&lt;br /&gt;table table td.text table.friendSpace td.text table div&lt;br /&gt;I can shortcut this.&lt;br /&gt;I don't really expect the class friendSpace to ever end up used for a different table, so I will shortcut the above some.&lt;br /&gt;The below code will hide the link&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table.friendSpace table div {display:none}&lt;br /&gt;table.friendSpace table br {line-height:1px}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Warning: if they change the online now icon, back to what they did a few weeks ago, this will hide the online now icon as well. If that happens, we can add code to recover the online now icons.&lt;br /&gt;&lt;br /&gt;If you have code to position your shows (on the band page) there is a good chance that the code has re-positioned the friend view link as well.&lt;br /&gt;This time I will use the longer method of addressing the friend link div.  Sometimes overrides do not work, if the address string does not include the same parent elements as the command we are trying to override.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table table td.text table.friendSpace td.text table div {position:static !important}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;If you are using code which has body and tdbody, or likes to jump over tables and through cells, when creating address lines; then try this:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;body table tbody tr td table tbody tr td.text table.friendSpace tbody tr td.text table tbody tr td div {position:static !important}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;This will take care of overriding the code where someone felt they needed to include even the elements which added no value, as far as making the address explicit; AND those which like to take shortcuts through the td, without including the parent table.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Counter Issues&lt;/b&gt;&lt;br /&gt;I can't help people with this one.  But I can verify that I have seen reports in multiple forums indicating it is a problem.  I have also seen multiple hits to this blog, with "counter not working" in the query, which is another clue that multiple people are having the problem.&lt;br /&gt;Since the counter is not something we can manipulate with css or html, I can not offer any sort of fix.&lt;br /&gt;But may I suggest that you ditch their counter and install your own.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Sep 7 2007: online now icon returns to the February 2007 Code.&lt;/b&gt;  So unless you have the very old online now icon code, your custom icons should work as they did prior to a few days ago.  (Those are really just permanent icons anyway unless you used my code for this, or someone else really has a solution, that I have not found yet.)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Sep 5 2007: online now icon changes.&lt;/b&gt;&lt;br /&gt;First:&lt;br /&gt;If you have installed code to resize images in comments, to control width, this code is probably effecting the size of the online now icon (it may be huge in IE).&lt;br /&gt;You can fix this by adding this line:&lt;br /&gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table.friendsComments div img {width:80px; height:20px;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you had the icon hidden, and still want it such do this:&lt;br /&gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!-hide online now icon everywhere in profile-!}&lt;br /&gt;table.friendsComments div img {display:none;}&lt;br /&gt;table.friendSpace div img {display:none;}&lt;br /&gt;table.profileInfo div img {display:none;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;br /&gt;Or if you don't want to mess with the spacing of stuff, this might be better:&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!-hide online now icon everywhere in profile-!}&lt;br /&gt;table.friendsComments div img {visibility:hidden;}&lt;br /&gt;table.friendSpace div img {visibility:hidden;}&lt;br /&gt;table.profileInfo div img {visibility:hidden;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;br /&gt;If you want a custom online now icon, which is there only when you are online;&lt;br /&gt;Well good luck.  I had one for the old strategy, but I think I was the only one who used it.&lt;br /&gt;I might try to figure it out for the new strategy, but I don't expect this new strategy to last very long.&lt;br /&gt;I expect it to have security issues.  (I will not be the one to exploit them).&lt;br /&gt;&lt;br /&gt;If you just want an image, to display in the location of the online now icon, and have nothing to do with one's actual online status.&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table.profileInfo table div {width:89px !important; height:28px !important; background: url(&amp;quot;http://i15.tinypic.com/61vugio.gif&amp;quot;);&lt;br /&gt;background-position: center center;&lt;br /&gt;background-repeat: no-repeat;}&lt;br /&gt;table.profileInfo table div img {display:none}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;Of course you can replace the image with a different one.&lt;br /&gt;Just don't get one that actually says &amp;quot;online now&amp;quot;&lt;br /&gt;change the height and width to match the image you choose.&lt;br /&gt;&lt;br /&gt;If you want to replace the images in the friend and/or comment spaces, just repeat the above block, and replace table.profileInfo with&lt;br /&gt;table.friendsComments&lt;br /&gt;and/or&lt;br /&gt;table.friendSpace&lt;br /&gt;or just add them to the existing line.&lt;br /&gt;Personally, since the image is always there, I wouldn't do that.  I would just hide it in those spaces.&lt;br /&gt;&lt;br /&gt;To see how the space to display the icon is structured:&lt;br /&gt;(It is times like this when I am glad I have a dynamic drawing to show me how the page is structured:)&lt;br /&gt;&lt;a href="http://www.myspace.com/drhoovey"&gt;MySpace Page Showing Structure&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Notice, even when not online the structure is there.  It is under each friend image as well (in both friend and comment spaces).&lt;br /&gt;Notice that it is now in a div, and that the div (with some image inside it) is there even if not online.&lt;br /&gt;They use a clear gif if the user is not online.&lt;br /&gt;So there is always a gif there, the choice the code makes, is which gif.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Aug 2 2007: Yes stuff changed last night (or early this morning).  The Ad Banner problem is there even if profiles with NO customizations at all.  This can not be caused by our customizations.  &lt;br /&gt;&lt;br /&gt;Update: This was fixed by the end of the day Aug 2.  (I observed some interesting changes during the course of the day, as they attempted to fix the problem.)&lt;br /&gt;&lt;br /&gt;July 11 2007: myspace introduced another round of changes.&lt;br /&gt;&lt;br /&gt;IF you have the following problems, related to the newest changes, they can  be easily fixed:&lt;br /&gt;&lt;br /&gt;1) &lt;b&gt;Your Meet, Friend, Calendar and/or Comment section is Gone&lt;/b&gt; (It is now hidden when it was not a few days ago)&lt;br /&gt;&lt;br /&gt;[Update July 14 2007] This now only effects the Meet space.  Myspace put back the end style tag at the end of the meet section. (I knew they would, and it has nothing to do with fixing people's page who failed to close their own style blocks).&lt;br /&gt;&lt;br /&gt;2) &lt;b&gt;Your Fonts in your Blogs, About Me, Meet, Networking, Companies are no longer as you had them set.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;3) &lt;b&gt;Your Div Overlay is Gone&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Related to (1);&lt;br /&gt;They removed the close style blocks at the end of the About and Meet sections.&lt;br /&gt;If you did not close your own style blocks, you are now exiting the Meet and/or About sections with an open style block.  This means that the myspace code, after this point, thinks it is inside the style block.  This prevents it from working.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Fix:&lt;/b&gt;&lt;br /&gt;Add a close style tag at the end of your About and/or Meet section (try both, it is harmless if it has no open tag).&lt;br /&gt;This should un-hide anything which was hidden due to no close style tag.&lt;br /&gt;&lt;br /&gt;Related to (2);&lt;br /&gt;This one is caused by the addition of a span assigned to class text.&lt;br /&gt;&lt;br /&gt;This can effect your fonts in multiple ways.&lt;br /&gt;A) Your font may have taken on the style set in the linked style sheet (the one they pull in that is not in the code you see when you do a view source); which sets the style for class text.&lt;br /&gt;If you have this font:&lt;br /&gt;{ font-family:arial; color:ffffff; font-size:12px; } &lt;br /&gt;Likely it is coming from this style sheet.&lt;br /&gt;&lt;br /&gt;B)IF you have a different font, besides the one above, and it is not the font you had prior to the change; the likely cause is another style command in your own code.&lt;br /&gt;&lt;br /&gt;Look for any style set using&lt;br /&gt;.text&lt;br /&gt;If you find this change it to td.text&lt;br /&gt;&lt;br /&gt;Once you make that change, the text may now take on the font style shown above (coming in from the style sheet).&lt;br /&gt;&lt;br /&gt;Now add the needed style command&lt;br /&gt;&lt;br /&gt;You can do this multiple ways.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Fix&lt;/b&gt;&lt;br /&gt;The best fix may be to just add in the style commands you need.&lt;br /&gt;&lt;br /&gt;i.e.&lt;br /&gt;table.blurbs span.text {your font stuff in here}&lt;br /&gt;table.latestblogentry span.text {your font stuff in here}&lt;br /&gt;table.userProfileCompany span.text {your font stuff in here}&lt;br /&gt;table.userProfileNetworking span.text {your font stuff in here}&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;b&gt;table.blurbs span.text {font-family:tahoma !important; font-size:13px !important}&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;You may (or may not) need to use the !important.&lt;br /&gt;It depends on what you have currently setting the font.&lt;br /&gt;&lt;br /&gt;IF they are all the same font, you can just do this:&lt;br /&gt;&lt;b&gt;span.text {font-family:tahoma !important; font-size:13px !important}&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Trouble shooting idea&lt;/b&gt;&lt;br /&gt;If you are having trouble finding the line of code that is setting your font, try doing this:&lt;br /&gt;Find every line where you set a font.&lt;br /&gt;One at a time, set the font color to hotpink and the size to 26.  Save and view the page.  See how it effects your page.&lt;br /&gt;If doing this (to all your font set commands) does NOT effect the font you are trouble shooting, then it is likely being set from the style sheet.&lt;br /&gt;&lt;br /&gt;Try inserting this at the top of the About and/or Meet &lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;AND put this at the bottom:&lt;br /&gt;&amp;lt;span&amp;gt;&lt;br /&gt;&lt;br /&gt;This will take the Section out of the span class text.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Related to (3).&lt;/b&gt;&lt;br /&gt;This is similar to (2).&lt;br /&gt;The cause is the same.&lt;br /&gt;In this case you may have in your code, something designed to hide stuff of class text.&lt;br /&gt;You may have used a shortcut syntax, and instead of indicating&lt;br /&gt;td.text&lt;br /&gt;you may just have&lt;br /&gt;.text&lt;br /&gt;&lt;br /&gt;This will now effect all of the stuff recently added to span class text.&lt;br /&gt;If it is hidden, you will not see it.&lt;br /&gt;&lt;br /&gt;It is probably safe to go through your code and replace &lt;br /&gt;.text&lt;br /&gt;with &lt;br /&gt;td.text&lt;br /&gt;(because span.text was not introduced until July 11, I am certain that everywhere you had .text, prior to July 11,  was meant to apply only to td.text).&lt;br /&gt;&lt;br /&gt;OR&lt;br /&gt;you may have hidden something using  span&lt;br /&gt;&lt;br /&gt;If you have any lines with &lt;br /&gt;{display:none}&lt;br /&gt;or&lt;br /&gt;{visibility:hidden}&lt;br /&gt;which have span listed as an effected element.&lt;br /&gt;&lt;br /&gt;i.e.&lt;br /&gt;xxx, yyy, zzz, span, jjj {display:none}&lt;br /&gt;where xxx, yyy, zzz, jjj can be almost anything.&lt;br /&gt;It may also be something like this&lt;br /&gt;table table table span&lt;br /&gt;or&lt;br /&gt;td td td span&lt;br /&gt;or table table td span&lt;br /&gt;etc&lt;br /&gt;If span is listed, and you are rendering the block {display:none} or {visibility:hidden} it can potentially hide anything in your about or meet sections.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Some other things you can do:&lt;br /&gt;If the problem is only effecting the About and/or Meet sections you can just close the span tag at the top of the effected area:&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Now for the Good&lt;/b&gt;:&lt;br /&gt;More new classes.&lt;br /&gt;&lt;br /&gt;We now have all of these classes:&lt;br /&gt;profileInfo&lt;br /&gt;NameText&lt;br /&gt;contactTable&lt;br /&gt;userProfileURL  (new)&lt;br /&gt;InterestsAndDetails  (new behavior, now only assigned to Interests)&lt;br /&gt;userProfileDetails  (new)&lt;br /&gt;userProfileSchool   (new)&lt;br /&gt;userProfileCompany  (new)&lt;br /&gt;userProfileNetworking (new)&lt;br /&gt;&lt;br /&gt;extendedNetwork&lt;br /&gt;latestBlogEntry&lt;br /&gt;Blurbs&lt;br /&gt;friendSpace&lt;br /&gt;friendsComments&lt;br /&gt;&lt;br /&gt;tdborder  (new, assigned at the td level, in some cases td has both this class and class text)&lt;br /&gt;&lt;br /&gt;text (now used as a span class as well as a td class)&lt;br /&gt;&lt;br /&gt;whitetext12&lt;br /&gt;lightbluetext8&lt;br /&gt;orangetext15&lt;br /&gt;blacktext10&lt;br /&gt;blacktext12&lt;br /&gt;whitelink&lt;br /&gt;btext&lt;br /&gt;redbtext&lt;br /&gt;redlink&lt;br /&gt;&lt;br /&gt;For a picture of the page, showing where each class is:&lt;br /&gt;&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=212778504"&gt;My Space Page showing Table Layout and Classes&lt;/a&gt;&lt;br /&gt;The above is an actual myspace page with style commands inserted to show div, table, cell layout and classes.&lt;br /&gt;It will automatically update when myspace makes changes to either the div/table/cell structure, use of span, or any of the classes that now exist.&lt;br /&gt;(New classes will not show up as new classes unless I add style commands).&lt;br /&gt;&lt;br /&gt;The text with the coral (salmon) colored background, is in span.text (meaning it is between span tags and the span is assigned to class text)&lt;br /&gt;This is new, this text has style set in one of the style sheets that is pulled in when the code runs.  &lt;br /&gt;It is not set to !important in that style sheet.&lt;br /&gt;You can override it with your own style command, as long as you address it correctly.&lt;br /&gt;It will not override with just span&lt;br /&gt;It will override with span.text&lt;br /&gt;&lt;br /&gt;Still no class for the Calendar, one would be really nice.&lt;br /&gt;&lt;br /&gt;&lt;div class="myQuerySpan"&gt;Thank you for Visiting; Have a Nice Day :-)&lt;br /&gt;&lt;br&gt;Queries hitting other pages of mine, which should be hitting this page:&lt;br /&gt;-did myspace change their code today? &lt;br /&gt;-How do I hide that new shortcuts thing that just showed up&lt;br /&gt;-How do I hide the short cut box on myspace&lt;br /&gt;-codes to hide the shortcut links on myspace&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-1745584254841502240?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/09/myspace-code-changes-problems-fixes.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>83</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-6548997110001932283</guid><pubDate>Wed, 05 Sep 2007 06:00:00 +0000</pubDate><atom:updated>2008-01-27T23:22:42.536-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>myspace columns spacing</category><title>myspace column spacing, centering</title><description>The Best way (that I know of) to control the spacing and positioning of the page columns, is by controlling the size of the clear gif spacers, that myspace has placed to the left of each column.&lt;br /&gt;&lt;br /&gt;To see where these To see where these gifs reside, refer to the following real myspace pages:&lt;br /&gt;&lt;a href="http://www.myspace.com/drhoovey" target="_blank"&gt;Regular MySpace Page Showing Structure, Layout, Classes&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.myspace.com/music3test" target="_blank"&gt;Artist (Band) MySpace Page Showing Layout, Structure, Classes&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Both of the above pages have keys to the left, indicating what all the colors and formatting mean.&lt;br /&gt;&lt;br /&gt;The clear gif files, I am speaking of, have orange dotted borders (as do all images, I did not identify a class for, on the diagram).&lt;br /&gt;&lt;br /&gt;The ones we can use, to manipulate the positioning of our profile columns are seen to the far left, and one in the center.&lt;br /&gt;&lt;br /&gt;The spacer clear gif to the far left, does throw the profile slightly off center.&lt;br /&gt;But if one considers the similar spacing to the far right (not done with a clear gif) it may actually serve to center the profile.&lt;br /&gt;(I haven't quite figured out what they are doing here).&lt;br /&gt;&lt;br /&gt;The below code block removes the clear gifs I mentioned:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;td {width:auto !important}&lt;br /&gt;table td img {display:none;}&lt;br /&gt;table table table td img, div table td img {display:block;}&lt;br /&gt;table.profileInfo table td img {display:inline;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you only want to remove the clear gif in the center, and not the one to the left:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;td {width:auto !important}&lt;br /&gt;table table td img {display:none;}&lt;br /&gt;table table table td img, div table td img {display:block;}&lt;br /&gt;table.profileInfo table td img {display:inline;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;If you want to decrease the space between the tables, under and above:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table table br {line-height:2px;}&lt;br /&gt;table table table br {line-height:15px;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you find that after removing the center clear gif, you still want the right column to move further to the left, I highly recommend that instead of just using relative positioning, you first try to alter the width of the left column.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!hard set width of left column! }&lt;br /&gt;table table table {width:300px;}&lt;br /&gt;&lt;br /&gt;{!right column set and override above!}&lt;br /&gt;table table td.text table {width:450px;}&lt;br /&gt;&lt;br /&gt;{!undo for nested tables!}&lt;br /&gt;table table table table, &lt;br /&gt;table table td.text table table,&lt;br /&gt;td {width:auto !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;It is important that no content in the tables, takes up more than the alloted space, or it will stretch the table.&lt;br /&gt;&lt;br /&gt;Some widths which are hard set in the code will be messed up, and some formatting will be lost.&lt;br /&gt;The calendar has some issues.  But I think overall this override is an improvement.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-6548997110001932283?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/09/myspace-column-spacing-centering.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>2</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-7529464882703967172</guid><pubDate>Tue, 04 Sep 2007 06:41:00 +0000</pubDate><atom:updated>2007-10-25T19:11:34.605-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>myspace layout tables divs classes</category><title>myspace layout classes tables page structure</title><description>First some Basics:&lt;br /&gt;&lt;br /&gt;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.&lt;br /&gt;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.&lt;br /&gt;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.&lt;br /&gt;&lt;br /&gt;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.&lt;br /&gt;&lt;br /&gt;A style block starts with a style tag, and ends with a close style tag&lt;br /&gt;The style tag is HTML.  It tells the browser to interpret the following lines as CSS instead of as HTML.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&lt;b&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;STYLE COMMANDS GO IN HERE &lt;br /&gt;&lt;br /&gt;&lt;b&gt;&amp;lt;/style&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;(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).&lt;br /&gt;&lt;br /&gt;To use Over Riding Style we need to know how to address the element.&lt;br /&gt;This can be done with a combination of depth (parent-child relationships), style, and other html tags which identify an element.&lt;br /&gt;&lt;br /&gt;The below picture shows the basic layout of the myspace pages.&lt;br /&gt;Tables are shown with solid borders.&lt;br /&gt;Cells (TD) are shown with dashed borders.&lt;br /&gt;td.text is shown in red dashed&lt;br /&gt;other td levels shown in black dashed&lt;br /&gt;Divs are shown in thick yellow dashes.&lt;br /&gt;img are shown with orange dashed borders (those very tiny images are clear gifs)&lt;br /&gt;&lt;br /&gt;In the below picture I have rendered the following gone (so as to better show the outer structure)&lt;br /&gt;table table table {display:none;}&lt;br /&gt;object, embed {display:none;}&lt;br /&gt;&lt;img src="http://i15.tinypic.com/6fhxe36.jpg"&gt;&lt;br /&gt;Things of Note:&lt;br /&gt;- The right and left columns are cells&lt;br /&gt;- 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.&lt;br /&gt;- 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).  &lt;br /&gt;- 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).&lt;br /&gt;&lt;br /&gt;The table in the center (the one holds our content) &lt;br /&gt;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.&lt;br /&gt;The center column contains a clear gif spacer.&lt;br /&gt;&lt;br /&gt;Now I will add to the picture, by removing the display none.  &lt;br /&gt;&lt;br /&gt;Instead of keeping a picture here, I have decided that I can render this image better, if I utilize a real myspace page.&lt;br /&gt;I have taken a real myspace page, and have added the needed style commands to show the following:&lt;br /&gt;&lt;br /&gt;div boundaries&lt;br /&gt;table boundaries&lt;br /&gt;cell boundaries&lt;br /&gt;classes (assigned to cell, row, table, div, span )&lt;br /&gt;other useful tags which we can utilize in our overriding style commands.&lt;br /&gt;&lt;br /&gt;The page is best viewed in FireFox.&lt;br /&gt;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.&lt;br /&gt;This makes it more difficult to see exactly where some boundaries are.&lt;br /&gt;&lt;br /&gt;FireFox is Free, I recommend downloading it:&lt;br /&gt;(I have a link to download firefox on my sidebar).&lt;br /&gt;&lt;br /&gt;Below are links to myspace pages:&lt;br /&gt;&lt;a href="http://www.myspace.com/drhoovey" target="_blank"&gt;Regular MySpace Page Showing Structure, Layout, Classes&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.myspace.com/music3test" target="_blank"&gt;Artist (Band) MySpace Page Showing Layout, Structure, Classes&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Both of the above pages have keys to the left, indicating what all the colors and formatting mean.&lt;br /&gt;&lt;br /&gt;If you have any questions, you may post them here, and I will try to answer them.&lt;br /&gt;(So far I have been able to answer most of the questions hitting this blog).&lt;br /&gt;&lt;br /&gt;Later I will add some style to a film page as well, to show the same boundaries.&lt;br /&gt;&lt;br /&gt;&lt;div class="myQuerySpan"&gt;Thank you for Visiting; Have a Nice Day :-)&lt;br /&gt;&lt;br/&gt;&lt;br /&gt;&lt;h1&gt;&lt;br /&gt;myspace page layout showing myspace classes and layering&lt;br /&gt;myspace classes&lt;br /&gt;explain what classes used in myspace&lt;br /&gt;how can I make use of the new myspace classes&lt;br /&gt;&lt;/h1&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-7529464882703967172?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/09/myspace-layout-classes-tables-page.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>67</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-427664044386890997</guid><pubDate>Sat, 01 Sep 2007 07:23:00 +0000</pubDate><atom:updated>2007-09-03T21:59:23.199-07:00</atom:updated><title>FireFox Marquee Direction Down Div Bug</title><description>&lt;b&gt;Interesting FireFox Marquee Bug (or is a Feature?)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:darkred"&gt;[If you are just looking for sample code, to create a marquee, I have a sample.  However it is designed to demonstrate a bug.  If you want it to work correctly, you might want to remove the style block at the bottom of the code block.]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;While I was trouble shooting someone's mySpace profile, I came across some interesting behavior, related to FireFox and the marquee tag.&lt;br /&gt;I tested the behavior outside of mySpace, so this problem is not caused by anything in the myspace code.&lt;br /&gt;&lt;br /&gt;For some reason, when used with direction=down (or direction=up); the marquee thinks it is inside an additional div.&lt;br /&gt;&lt;br /&gt;On the page I was troubleshooting, the marquee was in a div.  It was several tables and one div deep.&lt;br /&gt;The code had a style block, which had the following line:&lt;br /&gt;table div div {display:none;}&lt;br /&gt;&lt;br /&gt;Initially I thought maybe I had missed a div layer, but if that had been the case, then why did it work with direction:left.&lt;br /&gt;&lt;br /&gt;I ended up doing several tests.&lt;br /&gt;&lt;br /&gt;It worked fine if I used direction=left or direction=right.&lt;br /&gt;It failed to show the marquee if I used direction=down or direction=up.&lt;br /&gt;If I removed the style command&lt;br /&gt;table div div {display:none} it worked with direction=down.&lt;br /&gt;&lt;br /&gt;Here is some very basic marquee code.  (It is a complete html block, feel free to cut and paste it into an html editor and run it.)&lt;br /&gt;&lt;br /&gt;First, run it as it is, it should work, the marquee should move left.&lt;br /&gt;Next, change left to down.  It will no longer work (in FF, it is fine in IE)&lt;br /&gt;Then remove the line:&lt;br /&gt;div div {display:none}&lt;br /&gt;It should work.&lt;br /&gt;Note that the marquee is only ONE div deep.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;div class=&amp;quot;friends&amp;quot; style=&amp;quot;height:450px; width:100px&amp;quot;&amp;gt;            &lt;br /&gt;&amp;lt;h1&amp;gt;friends&amp;lt;/h1&amp;gt;            &lt;br /&gt;&amp;lt;marquee direction=left height=380 width=100 &amp;gt;&lt;br /&gt;&amp;lt;img &lt;br /&gt;src=&amp;quot;http://i178.photobucket.com/albums/w275/madeline_fogg/80tom.jpg&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;img &lt;br /&gt;src=&amp;quot;http://i178.photobucket.com/albums/w275/madeline_fogg/80-dick.jpg&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;img &lt;br /&gt;src=&amp;quot;http://i178.photobucket.com/albums/w275/madeline_fogg/80-harry.jpg&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/marquee&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div div {display:none;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-427664044386890997?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/09/firefox-marquee-direction-down-div-bug.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-2711459330457321552</guid><pubDate>Tue, 28 Aug 2007 01:51:00 +0000</pubDate><atom:updated>2008-08-09T20:08:46.262-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>last login hide private profile myspace</category><title>Private MySpace Profile: Hide last login, name, location, status on MySpace Private Profile</title><description>&lt;h1&gt;Hiding the Public Information (Last Login, Name, Age, Location, Status) on the public view of a Private Profile&lt;/h1&gt;&lt;br /&gt;&lt;br /&gt;I decided to publish this after seeing a few questions, on yahoo answers, where multiple answers indicated that this could not be done.&lt;br /&gt;The solution is not all that complex.  For the first one, it is a minor change, to code, that is very commonly used, to hide the same information on a public profile.&lt;br /&gt;By adding a class, and then adding style, one can make the code effect, only the public view of a private profile.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Hide Only the Text Next to the Profile Image&lt;/b&gt;&lt;br /&gt;(last login, age, location, name)&lt;br /&gt;First Put this in your headline:&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;font style=&amp;quot;display:none&amp;quot; class=&amp;quot;H&amp;quot;&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;next &lt;b&gt;ONLY IF you want this information to show on the Private (friends only) view of your profile&lt;/b&gt;&lt;br /&gt;Put this at the top of your about me:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;font.H {display:block !important;&lt;br /&gt;font-size:10px;&lt;br /&gt;color:black;&lt;br /&gt;background-color:white;&lt;br /&gt;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;You can change font attributes, as desired.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;If you want to hide much more, including your profile Image, status, and contact table&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;What this code will do:&lt;br /&gt;1) On the Public view of your private profile (the one seen by those NOT on your friend List) the profile will look like this:&lt;br /&gt;&lt;img src="http://i36.tinypic.com/1z1toxz.png"&gt;&lt;br /&gt;&lt;br /&gt;If you want, you can make your own images, which cover the content, instead of using mine.&lt;br /&gt;HOWEVER you must find a place to host them, that makes the image name SMALLER than what you will get on tinypic, for at least ONE of the two images.&lt;br /&gt;There is enough room to squeeze in one tinypic sized image.&lt;br /&gt;(I may be willing to host a few more generic images to go into this location, if you ask me; but none with personal names or information on them).&lt;br /&gt;&lt;br /&gt;2) On the Private view, the one your friends See the images which cover stuff, will be rendered display:none, and will not show up.&lt;br /&gt;&lt;br /&gt;3) There is no room left in the headline for headline text, therefore you will need to make an image of any headline text you want to use.&lt;br /&gt;We can apply this image as a background, to a font tag, we placed in the headline.&lt;br /&gt;&lt;br /&gt;The view your friends see, looks like this:&lt;br /&gt;&lt;img src="http://i35.tinypic.com/mtowzq.png"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;STEPS&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Step 1&lt;/b&gt;: Create any images you want to use.&lt;br /&gt;- image to cover your picture, location, sex, age, last login, contact table.&lt;br /&gt;Size image about 340px width by 313px height.&lt;br /&gt;Needed size is dependent on the size of your profile image, so if you have a very large image, some adjustment may be needed&lt;br /&gt;&lt;b&gt;You May Use the Image I Provide If you Want To&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;- image to cover your status text on your Private profile Public View&lt;br /&gt;Size image about 450px width by 90 px height.&lt;br /&gt;&lt;b&gt;You May Use the Image I Provide If you Want To&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;REMEMBER there is VERY LITTLE room, so using my very short named image for EITHER step 1 or 2 is highly recommended. &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;- image to use as headline text.&lt;br /&gt;This also serves to cover up the hanging quotes, so I recommend using something here.&lt;br /&gt;You will need to adjust the values in my code, if your image is not very close to 180px width by 30px height.&lt;br /&gt;&lt;b&gt;You will want to Make your own Image for This.  You can choose to just Not Have Headline text, and provide No Image&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;images need to be saved to tinypic, or a site with equally small (or smaller) url names. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Step 2&lt;/b&gt;: Put This code in the headline, to apply the image, and position it to cover the information.&lt;br /&gt;The below code uses my images.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;font class=&amp;quot;h&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://xiii.us/p3.png&amp;quot; style=&amp;quot;position:absolute;left:50%;top:175px;margin-left:-390px;&amp;quot; /&amp;gt;&amp;lt;img src=&amp;quot;http://xiii.us/p2.png&amp;quot; style=&amp;quot;position:absolute; right:50%;margin-right:-400px;top:175px;&amp;quot; /&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;font&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;STEP 3&lt;/b&gt;: Put the following code at the top of your about me:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=&amp;quot;i&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;a class=&amp;quot;i&amp;quot; href=&amp;quot;views-under-construction.blogspot.com&amp;quot;&amp;gt;&lt;br /&gt;Hide Last Login, Name, Location, Status, Age on Private Profile &amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a class=&amp;quot;i&amp;quot; href=&amp;quot;xiii.us/eGen/mpSkin.php&amp;quot;&amp;gt;&lt;br /&gt;myspace music player skins&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;.i, .h img {display:none !important;}&lt;br /&gt;&lt;br /&gt;font.h {display:block; height:30px; width:180px; background-color:white !important; position:relative; top:5px; background-image:url(http://i34.tinypic.com/30axi69.png);}&lt;br /&gt;&lt;br /&gt;table.profileInfo table td.text {font-size:0px;}&lt;br /&gt;table.profileInfo table td.text font {font-size:10px !important;}&lt;br /&gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Replace YOUR-URL with the url you used for your headline text.&lt;br /&gt;You can use font.F to set the font color, size, other style for the text under your headline.&lt;br /&gt;If you want to hide this text, on the Private view of your profile, add this line to the above style block:&lt;br /&gt;&lt;b&gt;font.F {display:none}&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;There are multiple other variations one can do using this technique.&lt;br /&gt;If someone has a specific request, feel free to ask.&lt;br /&gt;I can not guarantee I will create the code for it, but if I have time, I will try.&lt;br /&gt;&lt;br /&gt;If this code causes a problem with your profile, please let me know.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Use a Different Backgrounds on View that Friends See, and View that Non Friends See&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;To get a background on the private Non Friend view, you must use the official myspace profile editor.  This editor puts the code in a style sheet, that is applied to a private profile.&lt;br /&gt;&lt;br /&gt;To cause a different background image to show in the friend only view, apply style to the about me section, to override the background in the style sheet.&lt;br /&gt;Anything in the about me section will only be applied to the view the Friends See.&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;views-under-construction.blogspot.com&amp;quot;&amp;gt;&lt;br /&gt;myspace private profile override code&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a class=i href=&amp;quot;xiii.us/eGen/mpSkin.php&amp;quot;&amp;gt;&lt;br /&gt;myspace music player skins&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;.i {display:none;}&lt;br /&gt;body.bodyContent {background-image:url(YOUR-URL) !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-2711459330457321552?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/08/hide-last-login-name-location-status-on.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>32</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-36806616.post-3258660676340413457</guid><pubDate>Sun, 26 Aug 2007 17:19:00 +0000</pubDate><atom:updated>2009-01-18T13:10:19.530-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>onlinenow online myspace</category><title>MySpace Online Now Icon Code Fix</title><description>&lt;h1&gt;Re-Designing the MySpace OnLine Now Icon, a New Approach &lt;/h1&gt;&lt;br /&gt;&lt;h1&gt;Working code for a Custom myspace online now Icon &lt;/h1&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="myNoteL"&gt;January 8 2009: MySpace changed the code for their OnLine now icon in BOTH myspace 2.0 and myspace 1.&lt;/span&gt;&lt;br /&gt;Much of the code, on this page, is now obsolete (for a long time it was the only working solution for an icon that really only showed when myspace thought the person was on line.)&lt;br /&gt;The new solution is much much much easier, and I am sure many sites will have code for it soon enough.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The code for myspace 1.0 is not that different from the code for myspace 2.0.&lt;br /&gt;&lt;br /&gt;Code for both 1.0 and 2.0 can be found here:&lt;br /&gt;&lt;a href="http://xiii.us/eGen/olSkin.php"&gt;myspace 2.0 custom online (online now) icon code&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is even an option to show an offline icon, when myspace thinks that you are not online, that is different from the one you show when you are online.  &lt;br /&gt;But this option does add extra space that some will not like (the extra space is equivalent to the size of your online icon.)  There is a way to do this in IE that does not leave the extra space, if interested ask me.  The trade off is that it will not work cross browser.&lt;br /&gt;&lt;br /&gt;&lt;span class="myNoteL"&gt;Fixes for some issues related to the new online icon code&lt;/span&gt;&lt;br /&gt;The most common issue, people are now having, is that code to re-size the icon small (after sizing other images) is no longer working.&lt;br /&gt;This is causing many pages to display the new online icon much larger then desired.&lt;br /&gt;&lt;br /&gt;You can fix this using the following block of code:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;span.msOnlineNow img {height:18px !important; width:18px !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;If you want to hide ALL online icons on your page:&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;span.msOnlineNow {display:none;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;If you are using myspace 2.0 do NOT include the style tags.  The span class is the same in both myspace 2.0 and myspace 1.&lt;br /&gt;You can also add !important, in version 1 myspace (important does not work in version 2, it gets the dot out treatment, messing up the style line completely)&lt;br /&gt;This will give it a much higher precedence, and decrease the chances of an override by another style command.&lt;br /&gt;&lt;br /&gt;It is possible that the above code will not work on some pages, that have rendered images display:block (or other visible display mode) using an address clause that will take a higher precedence, but this should be rare.  Because the above addresses the element by class, any overriding code would have to be more explicit, and also have at least one class in the path.&lt;br /&gt;If you want to make sure it works, the below line is much more explicit.&lt;br /&gt;&lt;br /&gt;This code is for myspace 1.0&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;* span.msOnlineNow,&lt;br /&gt;table.friendSpace span.msOnlineNow,&lt;br /&gt;table.friendsComments span.msOnlineNow,&lt;br /&gt;table.profileInfo span.msOnlineNow {display:none !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt; The first clause is so it also works on artist pages.&lt;br /&gt;The others are to insure the line has a higher precedence then other code you may have.&lt;br /&gt;&lt;br /&gt;If you only want to hide the icon in your friendSpace this works (version 1 myspace):&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table.friendSpace span.msOnlineNow {display:none !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt; (version 2 myspace)&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;div.friendSpaceModule span.msOnlineNow {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Or hide it only in your comment space (version 1 myspace):&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;div.friendSpaceModule span.msOnlineNow {display:none !important;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;(or for myspace 2.0)&lt;pre class="source-code"&gt;&lt;code&gt;&lt;br /&gt;div.commentsModule span.msOnlineNow {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;It is now possible to use the existing online text, and hide (or replace) just the image.  You can choose to color and apply other style to the text without using an image.&lt;br /&gt;The new code offers many more online icon customizing options then the previous code offered.&lt;br /&gt;&lt;br /&gt;For instance, to hide only the icon, and keep the words (and style them)&lt;br /&gt;&lt;br /&gt;For version 1.0 the following code can go into any section that accepts html &lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{! remove online now image !}&lt;br /&gt;.i, span.msOnlineNow img {display:none;}&lt;br /&gt;{! style online now text !}&lt;br /&gt;span.msOnlineNow {font-size:13px; color:magenta; font-family:comic sans ms;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;i class=i&amp;gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/eGen/olSkin.php&amp;quot;&amp;gt;custom online now icons myspace 2.0 and 1.0&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;For version 2 put the following code into the css area:&lt;/b&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;{online icon code by Eileen; http://xiii.us/eGen/olSkin.php; http://spiff-myspace.blogspot.com}&lt;br /&gt;{! start code to remove online now image !}&lt;br /&gt;.i, span.msOnlineNow img {display:none;}&lt;br /&gt;{! style online now text !}&lt;br /&gt;span.msOnlineNow {font-size:13px; color:magenta; font-family:comic sans ms;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;It is also possible (and easy) to only effect one or more of the following areas:&lt;br /&gt;profile info area&lt;br /&gt;friend area&lt;br /&gt;comment area.&lt;br /&gt;&lt;br /&gt;If interested in a particular online icon tweak, ask.  &lt;br /&gt;There is so much possibility here.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IF (and only if) you appreciate my taking the time to develop, test, and provide people with myspace code; then I would appreciate it if you would put the following into your interests or about me section.&lt;/b&gt;  &lt;br /&gt;&lt;br /&gt;It can go anywhere in the section.  It will NOT show up on your profile, and should not effect how your profile looks.&lt;br /&gt;If you want these links visible, ask me, most people don't like that, so I did not do it that way.  &lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/eGen/olSkin.php&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;custom online now icons and code myspace 2.0 and myspace 1.0&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/eGen/mpSkin.php&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;music player skins and code, playlist and single song player, myspace 2.0 and myspace 1.0&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/eGen/ctSkin.php&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;custom contact tables and code to apply your own contact table for myspace 2.0 and myspace 1.0&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a class=i href=&amp;quot;http://xiii.us/eGen/topB.php&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;apply a custom top banner, myspace 2.0 myspace 1.0 band/artist pages&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a class=i href=&amp;quot;http://spiff-myspace.blogspot.com&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;myspace code tutorials myspace 2.0 and myspace 1.0; standard, artist, band pages&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;Thank you for visiting, and have a nice day&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;============================================================================&lt;br /&gt; Code Below is Mostly all Obsolete, I will later take the time to go through each block and remove what no longer works.  But anything addressing the class&lt;br /&gt;imgOnlineNow will no longer work. &lt;br /&gt;=============================================================================&lt;br /&gt;If you are looking for code to fix your custom online now icon, so that it behaves as the online now icon should, you have come to the right place (at least for now).&lt;br /&gt;&lt;br /&gt;The code in this article works (it is the ONLY online now icon code, I know of, which works).  [Still working when tested on 7 Oct 2007 . . .]&lt;br /&gt;This icon works the Standard Page.  &lt;br /&gt;&lt;br /&gt;MOST of the code in this article works on the Band and other Artist pages.&lt;br /&gt;Any code line using profileInfo does not work on the Band page.  &lt;br /&gt;&lt;br /&gt;At the time I am writing this, I did search cyberspace, and I did not find another solution which accomplishes all of the following goals:&lt;br /&gt;- Replace the online now Icon, with a custom Icon, which will show up ONLY when myspace thinks I am online. (when the default icon would otherwise show up) &lt;br /&gt;- Have the Custom online now icon show up in ALL page locations where the default online icon would otherwise be shown. (friend and Comment Spaces)&lt;br /&gt;- Do both of the above in IE and FireFox and Mozilla&lt;br /&gt;&lt;br /&gt;&lt;b&gt;If you do not want to read the entire article, you can use the below links to jump to the content you are interested in&lt;/b&gt;&lt;br /&gt;&lt;A HREF="#custom-online-animated"&gt;Install Custom Online Now Icon (animated)&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#non-animated-onlinenow-icon"&gt;Install Custom Online Now Icon (non-animated)&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#color-onlinenow-icon"&gt;Change Color of online Now Icon (IE Only)&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#permanent-onlinenow-icon"&gt;Install Permanent online Now Icon above last login&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#how-online-icon-works"&gt;Learn about how the online now icon is implemented and Why most solutions don't work&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#CustomIconBlog"&gt;Custom online now icon Blog Page&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#hide-YOUR-onlinenow-icon"&gt;Hide YOUR online status from others&lt;/A&gt;&lt;br /&gt;&lt;A HREF="#hide-onlinenow-icon"&gt;Hide online Icon&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://www.myspacecommentgraphics.com/online-now.php"&gt;pre-made Custom OnLine Now Icons&lt;/A&gt; (This takes you to another site. I have given them permission to use my code with their custom icons.)&lt;br /&gt;&lt;span class="dredb"&gt;At this time [8 Oct 2007], This solution DOES work.  &lt;br /&gt;However, I have seen myspace attempt to modify their online now icon strategy multiple times in the last few days [1 Oct, 2 Oct, 3 Oct 2007], to a strategy which will render this solution broken.  They implemented the same strategy for a few days in early September.  Each time they back out their changes, again rendering this solution functional.  I will publish new code when myspace keeps their code in place long enough for me to be reasonably convinced they are not going to back it out. &lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="dredb"&gt;You MAY NOT copy this code and publish it for use by others.  You MAY use this code in your profile.  Keep my headers with it so others, who may see the code in your profile, know that they do NOT have permission to publish this solution. (More on why I feel I own the rights to this solution at the bottom of this post)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="custom-online-animated"&gt;Custom Online Now Icon Animated&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;This code replaces the online now icon in ALL locations on your page.  In the friend and Comment sections also.&lt;br /&gt;If you install this code, and do not see your icon, be patient.  If myspace would not otherwise show their icon (that ugly orange and green thing) than this one won't show either.  They are often slow to detect when you are online, and even slower to detect when you are no longer online.  If you want an image which is always there, instead of one that behaves like an online now icon, scroll to the last solution on this page.&lt;br /&gt;&lt;br /&gt;This solution is very optimized for a 20px X 80px image.  If your image is not this size, post a question, and I will do the math to get the right values for your image.&lt;br /&gt;This Solution has been Tested in Firefox, IE6, Mozilla (on Unix)&lt;br /&gt;&lt;b&gt;The Code&lt;/b&gt; It goes almost anywhere.  If unsure where to put it, put it at the very top of your about me section, or bio (if using a band page).&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;&lt;br /&gt;!-Custom OnLine Now Icon &lt;br /&gt;!-Solution Source: &amp;lt;a href=&amp;quot;http://xiii.us/v&amp;quot;&amp;gt;MySpace Code&amp;lt;/a&amp;gt;-!&lt;br /&gt;!-Solution Optimized for 80x20 icon.  You WILL need to adjust size, clip and margin values for other icon sizes-!&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!-apply background image; replace with url of your image -!}&lt;br /&gt;img.ImgOnlineNow {background-image:url(&lt;b&gt;http://i2.tinypic.com/4q5x18z.gif&lt;/b&gt;);&lt;br /&gt; background-repeat: no-repeat;}&lt;br /&gt;img.ImgOnlineNow {height:0px !important; width:0px !important; padding-top:20px; padding-right:80px; background-position: top right;}&lt;br /&gt;&lt;br /&gt;{!-IE solution -!}&lt;br /&gt;{!-All Rights to this Solution Reserved. You may use it.  You may NOT publish it.}&lt;br /&gt;* html img.ImgOnlineNow {padding-top:0px; padding-right:0px;}&lt;br /&gt;* html img.ImgOnlineNow {width:105px !important; height:52px !important;}&lt;br /&gt;{!-The margin values may need adjustment-!}&lt;br /&gt;* html img.ImgOnlineNow {position:absolute; margin-left:-45px!important;}&lt;br /&gt;* html table.friendsComments img.ImgOnlineNow {margin-left:-65px !important;}&lt;br /&gt;* html table.friendSpace img.ImgOnlineNow {margin-left:-65px !important;}&lt;br /&gt;* html img.ImgOnlineNow {clip: rect(0px, 105px, 21px, 26px)}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;! END code for Custom online Now Icon !&amp;lt;/span&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="non-animated-onlinenow-icon"&gt;Non Animated Online Icon&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;This one works with any size icon, without the need to alter any values.  However, it does not animate in IE (it does in FF).  If your image is an animated gif, and the first frame is not what you want to see in IE, then use solution 1 instead.&lt;br /&gt;&lt;b&gt;The Code&lt;/b&gt; It goes almost anywhere.  If unsure where to put it, put it at the very top of your about me section, or bio (if using a band page).&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;&lt;br /&gt;!-Custom OnLine Now Icon &lt;br /&gt;!-Solution Source: &amp;lt;a href=&amp;quot;http://xiii.us/v&amp;quot;&amp;gt;MySpace Code&amp;lt;/a&amp;gt; For Updates-!&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!-Size img setting either width and/or height to 0-!}&lt;br /&gt;img.ImgOnlineNow {width:0px !important; height:0px !important;}&lt;br /&gt;&lt;br /&gt;{!-apply background image if FF.  This will NOT SHOW in IE-}&lt;br /&gt;img.ImgOnlineNow {padding-top:20px; padding-right:80px; background: url(&amp;quot;&lt;b&gt;IMG-URL-HERE&lt;/b&gt;&amp;quot;); &lt;br /&gt;background-position: center center;&lt;br /&gt;background-repeat: no-repeat;}&lt;br /&gt;{!-remove padding in IE-!}&lt;br /&gt;img.ImgOnlineNow {_padding-top:0px; _padding-right:0px;}&lt;br /&gt;&lt;br /&gt;{!apply background image in IE. Image will not animate in IE!}&lt;br /&gt;img.ImgOnlineNow {_width:1px !important; _height:1px !important; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader&lt;br /&gt;(src=&amp;quot;&lt;b&gt;IMG-URL-HERE&lt;/b&gt;&amp;quot;)} &lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;I do not have a code generator for this, nor do I plan to write one (unless I get an overwhelming response asking me to do so).  Seriously, it is so easy to just cut and paste, and then replace the &lt;b&gt;IMG-URL-HERE&lt;/b&gt; with the URL of the image you want to use.  &lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="hide-YOUR-onlinenow-icon"&gt;Hide YOUR online Icon&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;IF you want to hide when YOU ARE online, you do this via a setting:&lt;br /&gt;"Home" » "Account Settings" » "Privacy Settings" and choose "Hide Online Now Icon"&lt;br /&gt;You may need to repeat this, every so often.  MySpace has this tendency to reset stuff back to default values.  If you think it needs to be re-set, yet it looks like it is set, change it back and forth and then save changes.&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="hide-onlinenow-icon"&gt;Hide online Icon&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;If you only want to remove the icon&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{! hide online now icon all occurances !}&lt;br /&gt;img.ImgOnlineNow {display:none;}&lt;br /&gt;{! and in case mySpace brings back the code they had a few days ago !}&lt;br /&gt;{! the profileInfo code line has no effect on band page !}&lt;br /&gt;table.profileInfo table div img {display:none !important}&lt;br /&gt;table.friendsComments table div img {display:none !important}&lt;br /&gt;table.friendSpace table div img {display:none !important}&lt;br /&gt;&amp;lt;/style&amp;gt; &lt;/code&gt;&lt;/pre&gt;Or, If you want to display some of the icons, and turn others off, use the below code.  Remove the lines for the icons you want to keep. &lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{! hide online now icon!}&lt;br /&gt;{! icon next to profile image !}&lt;br /&gt;table.profileInfo img.ImgOnlineNow {display:none;}&lt;br /&gt;{! icons under friend picture in friend space !}&lt;br /&gt;table.friendSpace img.ImgOnlineNow {display:none;}&lt;br /&gt;{! icons under friend pictures in comment space !}&lt;br /&gt;table.friendsComments img.ImgOnlineNow {display:none;}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;More stuff that was once on the top, that I don't think people Care about&lt;/b&gt;&lt;br /&gt;The Concept behind my online now icon solution, and why it works like the online now icon.&lt;br /&gt;Notice the code had 2 solutions coded.  One for IE, one for FF and some other browsers.&lt;br /&gt;In IE I use filters in one solution (which do not work in FF).&lt;br /&gt;My other IE solution uses a combination of enlarging, clipping and positioning.  This did work well in FF, but did NOT work in Mozilla (for some reason Mozilla left traces of the clipped portion, and re-colored it to black, not good looking).&lt;br /&gt;&lt;br /&gt;For non IE browsers (tested in FF and Mozilla) I use padding.  This was the cleanest, but with so many users using IE, it was not a suitable stand alone solution.&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="color-onlinenow-icon"&gt;Change Color of online Icon&lt;/A&gt;&lt;br /&gt;&lt;b&gt;Another IE solution to Change the icon color&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;This one applies a filter which changes the color of the icon.&lt;br /&gt;This only works in IE.  This is very simple.  Your icon in FF will remain unchanged.&lt;br /&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;&lt;br /&gt;!-Custom OnLine Now Icon &lt;br /&gt;!-If this code stops working check &amp;lt;a href=&amp;quot;http://xiii.us/v&amp;quot;&amp;gt;MySpace Code&amp;lt;/a&amp;gt; For Updates-!&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!-add filter in IE-!}&lt;br /&gt;img.ImgOnlineNow{filter: mask(Color=pink)}&lt;br /&gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Choose your own color, and replace the Pink&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="permanent-onlinenow-icon"&gt;Permanent Icon Above Last Logon&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:14px; font-color:navy; font-weight:bold"&gt;And I almost forgot; some people really do want just an icon, that is always there, and has nothing to do with the online status.  I have better code (that anything I found) for that as well. &lt;/span&gt;&lt;br /&gt;&lt;b&gt;NOTE: The icon installed, with the below code is NOT an online now icon.  It is just an icon.  It is always there.  The below code does NOT work on the Band Page&lt;/b&gt; &lt;br /&gt;&lt;b&gt;But if All you want is a static image, placed where one of the online now icons resides with the online icon hidden, here is a solution.&lt;/b&gt;&lt;br /&gt;The below code installs this icon:&lt;img src="http://i15.tinypic.com/61vugio.gif"&gt;&lt;br /&gt;You can replace the URL with your own.&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!-place image as a background to the clear gif in the cell which is between the profile picture and the profile data-!}&lt;br /&gt;table.profileInfo table td.text img {background-image:url(&amp;quot;http://i13.tinypic.com/4unmxqg.gif&amp;quot;);&lt;br /&gt;background-position:bottom right;&lt;br /&gt;background-repeat:no-repeat;}&lt;br /&gt;&lt;br /&gt;{!- size and position the image &lt;br /&gt;- height determines vertical positioning&lt;br /&gt;- margin-right determines horizontal position. &lt;br /&gt;- DO NOT add a top value to the positioning -!}&lt;br /&gt;&lt;br /&gt;table.profileInfo table td.text img {height:45px; width:90px; position:absolute; right:50%; margin-right:150px;}&lt;br /&gt;&lt;br /&gt;{!-unDo effect on main image.  You can set width to the value you want your main profile image to be.  The percent thing works well on FF, not so well on IE-!}&lt;br /&gt;table.profileInfo table td.text a img {position:static; margin-right:0px; margin-left:0px; width:100%; height:auto}&lt;br /&gt;&lt;br /&gt;{!-turn off default ugly online now icon-!}&lt;br /&gt;table.profileInfo img.imgonlinenow {display:none;}&lt;br /&gt;{!-and just in case mySpace brings back the code they had a few days ago-!}&lt;br /&gt;table.profileInfo table div img {display:none;}&lt;br /&gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;&lt;A NAME="how-online-icon-works"&gt;How the online icon works, and why most solutions do not work&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;When myspace detects you are online, they place the code, for the online now icon image, directly into your profile code.  They do the same thing for each of your friends.  For each friend, they check to see if the friend is on line, and if they are, the code for the online now icon gets inserted into the code which is generated to display your page.&lt;br /&gt;When you refresh your page, the code is re-generated.&lt;br /&gt;The online status is check again.  &lt;br /&gt;&lt;br /&gt;The image is in class="ImgOnlineNow".  This class is used ONLY for this image.&lt;br /&gt;The image is in a cell which is SHARED with other page elements.&lt;br /&gt;The cell is ALWAYS there.&lt;br /&gt;&lt;br /&gt;Any solution which does this:&lt;br /&gt;.ImgOnlineNow {visibility:hidden}&lt;br /&gt;OR this:&lt;br /&gt;.ImgOnlineNow {display:none}&lt;br /&gt;(any number of elements may be listed in front of .ImgOnlineNow)&lt;br /&gt;is HIDING your icon ALL THE TIME.&lt;br /&gt;&lt;br /&gt;Any solution which places a background image, as a background to the table cell (usually td.text) is placing an image, which is ALWAYS there.&lt;br /&gt;The cell is always there.  It does NOT go away when myspace detects that you are no longer online.&lt;br /&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;Why does my solution work?&lt;/span&gt;&lt;br /&gt;I do NOT render the online now icon either hidden or display:none.&lt;br /&gt;I use the actual online now icon, as my container for my background image.&lt;br /&gt;Since the onlinenow icon image goes away, when the system detects I have logged off, my custom icon (which is a background image to the default icon) also goes away.&lt;br /&gt;&lt;br /&gt;I was NOT the first to think of this part of the solution.  Others attempted this before me.  &lt;br /&gt;&lt;br /&gt;Think of the image as taking up two layers.&lt;br /&gt;One layer being a space, to accomodate the image, that can be assigned its own background.  The other layer being the visible image.&lt;br /&gt;FF allows the first layer, to be larger than the visible image, via padding.&lt;br /&gt;IE does not, it places the padding OUTSIDE.&lt;br /&gt;The alphaimageloader filter will allow a background image to be larger than the visible image it is applied to.&lt;br /&gt;But it destroys animation.&lt;br /&gt;(I think it is the best solution for non animated images).&lt;br /&gt;&lt;br /&gt;What I did, was to take advantage of a clear segment of the default icon.&lt;br /&gt;Instead of shrinking the icon to 0, I stretched it.&lt;br /&gt;Then I applied the custom background image to a top corner, where it was only covered with a clear segment of the default icon.&lt;br /&gt;Then I clipped off the visible part of the default icon.&lt;br /&gt;This did require that I do re-positioning, because this shifted my icon to the right.&lt;br /&gt;The clip also requires absolute positioning, so it is difficult to adjust things, for  large icons.  But it worked very well for an icon with a height of 20px.&lt;br /&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;What new strategy is MySpace about to Implement and Why will it break my Solution?&lt;/span&gt;&lt;br /&gt;The new strategy (which is similar to a very old strategy which was used prior to my own MySpace days) involves the use of a div.&lt;br /&gt;The div is ALWAYS there.  It does NOT go away when you are no longer online.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;This will cause a custom icon to start showing up, on many pages, which have very old code for a custom online now icon&lt;/b&gt;&lt;br /&gt;Why?&lt;br /&gt;Because there will now be a div, at the same level, it was prior to Feb 2007.&lt;br /&gt;This means that all of those old solutions, which place a background image to this div, will start working (well sort of).&lt;br /&gt;When not online the custom icon will show up&lt;br /&gt;When online the custom icon will still be there, but behind the default icon.&lt;br /&gt;&lt;br /&gt;No longer is the image in class "ImgOnlineNow".  The image has no class.&lt;br /&gt;I can still address it, because no other image is at the same exact level.&lt;br /&gt;So those who read code, will quickly give out new "hide online now icon solutions".&lt;br /&gt;Will this solve the problem?&lt;br /&gt;If you want a permanent custom icon, in place of an online now icon, this will solve the problem.&lt;br /&gt;&lt;br /&gt;Will my current solution Work?&lt;br /&gt;No.  &lt;br /&gt;While more elegant, simpler solutions will exist for a custom permanent icon, it will be more difficult than before, to implement a custom online now icon.&lt;br /&gt;&lt;br /&gt;Basically this is the algorithm which the myspace solution will be using:&lt;br /&gt;IF not online, place clear gif inside div&lt;br /&gt;If online, place onlinenow image inside div&lt;br /&gt;&lt;br /&gt;No class is used, that distinguish one image from the other&lt;br /&gt;They are at the exact same depth.&lt;br /&gt;So how can I differentiate?&lt;br /&gt;  &lt;br /&gt;I do have an IE only solution for the new strategy.  I am not going to reveal what it is yet.  I am trying to come up with a cleaner solution.&lt;br /&gt;&lt;br /&gt;I also have ideas that represent a paradigm shift from what people now perceive as a custom online now icon.&lt;br /&gt;However, I am not going to put any significant effort into my solution until I am more certain myspace is really going to use the new strategy.  &lt;br /&gt;&lt;br /&gt;&lt;span class="mainStep"&gt;Why I feel I own the rights to this Solution&lt;/span&gt;&lt;br /&gt;Many tried before me to come up with a working solution.  I know this, because I came across multiple solutions, which did NOT work.  They had instead resorted to a permanent style icon, and felt they could fool people into thinking it was behaving like an online now icon.  The authors of such solutions must know that their solutions created an icon which was always there. Yet it was being published as an online now icon.  Why?  &lt;br /&gt;I really believe I am the only one who thought of techniques to make the custom icon ONLY show up when the default online icon otherwise would, which worked in IE.&lt;br /&gt;And as obvious as the solution may seem, I am the one who thought of it. &lt;br /&gt;&lt;br /&gt;More Notes:&lt;br /&gt;As I was doing some research, to see if anyone else had come up with the same solution I have, I did come across what may be the original source of the "fake online now icon" (The one that is always there).  This may have originated from a teenager who posts to the myspace customizing forum.  &lt;br /&gt;He had posted it to the forum, and had it coded for IE only.  &lt;br /&gt;He had another solution for Non-IE browsers, which is the SAME padding solution I am using for non-IE browsers.&lt;br /&gt;So while I have not found anyone else who has either of my IE solutions, I did find someone else who had published the non-IE padding solution months before I did.&lt;br /&gt;He calls himself "The Odd One".  &lt;br /&gt;&lt;a href="http://profile.myspace.com/47458423"&gt;His MySpace Page&lt;/a&gt;&lt;br /&gt;The mySpace Discussion where I discovered that I was not the first one to use the padding solution for non IE browsers:&lt;br /&gt;&lt;a href="http://forum.myspace.com/index.cfm?fuseaction=messageboard.viewThread&amp;entryID=31313507&amp;categoryID=0&amp;IsSticky=0&amp;groupID=103270382"&gt;Febuary Myspace Forum online now icon solution&lt;/a&gt;&lt;br /&gt;So while I did think of the NON-IE padding solution myself (I had not yet seen his post) I was not first.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Code for a 40X80 Icon, Standard Profile only &lt;/b&gt;&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;&lt;br /&gt;!-Custom OnLine Now Icon &lt;br /&gt;!-Solution Source: &amp;lt;a href=&amp;quot;xiii.us/v&amp;quot;&amp;gt;MySpace Code&amp;quot;&amp;gt;MySpace Code&amp;lt;/a&amp;gt;-!&lt;br /&gt;!-Solution Optimized for 80x20 icon.  You WILL need to adjust size, clip and margin values for other icon sizes-!&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;{!-apply background image; replace with url of your image -!}&lt;br /&gt;img.ImgOnlineNow {background-image:url(URL-OF-YOUR-IMAGE-HERE); background-repeat: no-repeat;}&lt;br /&gt;img.ImgOnlineNow {height:0px !important; width:0px !important; padding-top:40px; padding-right:80px; background-position: center center;}&lt;br /&gt;&lt;br /&gt;{!-IE solution -!}&lt;br /&gt;{!-All Rights to this Solution Reserved. You may use it.  You may NOT publish it.}&lt;br /&gt;* html table.profileInfo table td.text br {line-height:20px;}&lt;br /&gt;* html table.profileInfo table td.text img.ImgOnlineNow {margin-top:-15px;}&lt;br /&gt;* html img.ImgOnlineNow {padding-top:0px; padding-right:0px;}&lt;br /&gt;* html img.ImgOnlineNow {width:105px !important; height:110px !important; }&lt;br /&gt;* html img.ImgOnlineNow {background-position:top right;}&lt;br /&gt;{!-The margin values may need adjustment-!}&lt;br /&gt;* html img.ImgOnlineNow {position:absolute; margin-left:-25px!important;}&lt;br /&gt;* html table.friendsComments img.ImgOnlineNow {margin-left:-65px !important;}&lt;br /&gt;* html table.friendSpace img.ImgOnlineNow {margin-left:-65px !important; margin-top:-20px;}&lt;br /&gt;* html table.friendSpace table table a img {margin-bottom:20px;}&lt;br /&gt;* html img.ImgOnlineNow {clip: rect(0px, 105px, 41px, 26px)}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;! END code for Custom online Now Icon !&amp;lt;/span&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Calculating values for larger icons:&lt;br /&gt;&lt;br /&gt;customHeight = height of custom image&lt;br /&gt;customWidth = width of custom image&lt;br /&gt;&lt;br /&gt;onlineHeight = height to set imgOnlineNow to, to insure we have enough clear area for our image&lt;br /&gt;onlineWidth = width to set imgOnlineNow to, to insure we have enough clear area for our image&lt;br /&gt;&lt;br /&gt;Set size of onlinenonlineWidth image as follows:&lt;br /&gt;onlineHeight = customHeight * 2.5&lt;br /&gt;onlineWidth = customWidth * 1.3&lt;br /&gt;&lt;br /&gt;The clip property px arguments are in the following order:&lt;br /&gt;top, right, bottom, left&lt;br /&gt;&lt;br /&gt;They are calculated as follows:&lt;br /&gt;clipTop = 0&lt;br /&gt;clipRight = onlineWidth   or  (customWidth * 1.3 )&lt;br /&gt;clipBottom = customHeight&lt;br /&gt;clipLeft = clipRight - customWidth&lt;br /&gt;&lt;br /&gt;Keep in mind that the clipped portion does effect position.&lt;br /&gt;The amount clipped off the left = clipLeft&lt;br /&gt;Therefore the IE left positioning needs to be an amount, of clipLeft, further to the left.&lt;br /&gt;&lt;br /&gt;IF your image is larger than 40px high I recommend moving it to another page location, and NOT keeping it just above the last login.&lt;br /&gt;I also do NOT recommend placing a custom online image in the friend and/or comment sections, which is larger than 20px by 80px.&lt;br /&gt;&lt;br /&gt;Because clip requires position:absolute; any space needed for the icon, must exist even if not online.&lt;br /&gt;This means if I want a very large online now icon on the top of my page, I either need an alternate image when I am not online OR I will have a blank gap when I am not online.&lt;br /&gt;&lt;br /&gt;Below is an example of placing a very large custom online now icon just under the top navigation menu.&lt;br /&gt;&lt;br /&gt;My Custom image:&lt;br /&gt;http://i16.tinypic.com/8b4miwp.gif&lt;br /&gt;&lt;br /&gt;The size of the image is:&lt;br /&gt;height:100px&lt;br /&gt;width:800px&lt;br /&gt;&lt;br /&gt;For non IE (Internet Explorer) browsers, I need to size the default online now image to zero, and apply padding to accomodate a background image.&lt;br /&gt;&lt;br /&gt;For IE I need to size the default online image large enough, that I can clip a clear portion, which is the size of my custom image.&lt;br /&gt;I calculate the size needed for IE, as follows;&lt;br /&gt;&lt;br /&gt;customHeight = 100&lt;br /&gt;customWidth = 800&lt;br /&gt;&lt;br /&gt;onlineHeight = 100 * 2.5 = 250&lt;br /&gt;onlineWidth = 800 * 1.3 = 1040&lt;br /&gt;&lt;br /&gt;Now I calculate the clip values for IE&lt;br /&gt;clipTop = 0&lt;br /&gt;clipRight = onlineWidth = 1040&lt;br /&gt;clipBottom = customHeight = 100&lt;br /&gt;clipLeft = clipRight - customWidth = 240&lt;br /&gt;&lt;br /&gt;The following code block will cause the custom icon to show, just under the top navigation bar, ONLY if the default icon would otherwise show.&lt;br /&gt;If the default icon would NOT otherwise show, this space will be blank.  The below code block does NOT work on the Band page.  (It can be modified to work on the band page).  &lt;br /&gt;Place this code in the about me section, at the top or bottom.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;&lt;br /&gt;!-Custom OnLine Now Icon &lt;br /&gt;!-Solution Source: &amp;lt;a href=&amp;quot;http://www.msplinks.com/MDFodHRwOi8veGlpaS51cy9vbmxpbmUtbm93LWljb24=&amp;quot;&amp;gt;&lt;br /&gt;Custom online now icon code by Eileen&amp;lt;/a&amp;gt;-!&lt;br /&gt;Display a 800 x 100 px online icon, just under the top nav bar &lt;br /&gt;ONLY if the default online icon would otherwise show.&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;table.navigationBar {margin-bottom:110px;}&lt;br /&gt;{!-apply background image; replace with url of your image -!}&lt;br /&gt;table.profileInfo img.ImgOnlineNow {background-image:url(&amp;quot;http://i16.tinypic.com/8b4miwp.gif&amp;quot;); background-repeat: no-repeat;}&lt;br /&gt;table.profileInfo img.ImgOnlineNow {height:0px !important; width:0px !important;&lt;br /&gt; padding-top:100px; padding-right:800px; background-position: top right; }&lt;br /&gt;&lt;br /&gt;{!-Positioning-!}&lt;br /&gt;table.profileInfo img.ImgOnlineNow {position:absolute; top:165px; &lt;br /&gt;left:50%; margin-left:-400px; _margin-left:-640px}&lt;br /&gt;&lt;br /&gt;{!-IE only sizing and clipping -!}&lt;br /&gt;{!-All Rights to this Solution Reserved. You may use it.  You may NOT publish it.}&lt;br /&gt;* html table.profileInfo img.ImgOnlineNow {&lt;br /&gt;padding-top:0px; padding-right:0px;}&lt;br /&gt;* html table.profileInfo img.ImgOnlineNow {&lt;br /&gt;width:1040px !important; height:250px !important; }&lt;br /&gt;&lt;br /&gt;* html table.profileInfo img.ImgOnlineNow {clip: rect(0px, 1040px, 100px, 240px)}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;span class=&amp;quot;off&amp;quot;&amp;gt;! END code for Custom online Now Icon !&amp;lt;/span&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Notice that for one of my margin-left settings, I put an underscore in front of the word margin (_margin-left).  Only IE recognizes this.&lt;br /&gt;Due to the clip, I needed to more the image an extra 240px left.  This is how much was clipped off of the left side of the image.  For positioning, the system behaves as if the clipped off portion, were still part of the image.&lt;br /&gt;&lt;br /&gt;Clip will work in FireFox, but because the padding solution is much cleaner, and clip did NOT work in some minor browsers (and padding did work), I only use clip for the IE solution.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="subLink"&gt;&lt;A NAME="CustomIconBlog"&gt;Custom online now icon Blog Page&lt;/A&gt;&lt;/span&gt;&lt;br /&gt;This one is more complicated, unless one wants a permanent icon (one that is there even when not online).&lt;br /&gt;The permanent icon is actually easier on the blog page, than the standard page.&lt;br /&gt;To create an icon, for this space, that only shows when online, may not be possible.&lt;br /&gt;However, &lt;br /&gt;It is possible (and I know how) to do a NOT ON LINE icon where the NOT is covered, when you are actually online (or at least when myspace detects you are online).&lt;br /&gt;But I haven't written the code yet, and am not sure there is enough demand for it, to make it worth my time.  In IE one could cover the word NOT with the color of their choice, however in FireFox (and other browsers) the options are more limited, (pretty much to green or orange).&lt;br /&gt;If enough interest is expressed, I could come up with this code.&lt;br /&gt;&lt;br /&gt;Code For the permanent icon, which HIDES the default online icon and places another icon in the same place.  &lt;br /&gt;This Icon is there even when you are NOT ON LINE. &lt;br /&gt;Place this code in the blog customize section.  No style tags are needed (they are provided when myspace parses the information).&lt;br /&gt;Replace my image (shown in bold below) with the image you want to use).&lt;br /&gt;If your image is larger than 20x80, you will need additional code.&lt;br /&gt;&lt;pre class="source-code"&gt;&lt;code&gt;table.profile div {background-image:url(&lt;b&gt;http://i15.tinypic.com/61vugio.gif&lt;/b&gt;);&lt;br /&gt;background-position:center center; &lt;br /&gt;background-repeat:no-repeat}&lt;br /&gt;table.profile div img {display:none;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="myQuerySpan"&gt;Thank you for Visiting; Have a Nice Day :-)&lt;br /&gt;&lt;br&gt;If Google has taken you to this page, and this is not what you are looking for, do not blame me.  Every Query I list below, is covered in this article.&lt;br /&gt;-MySpace online now icon code is not working&lt;br /&gt;-my online now icon does not go away &lt;br /&gt;-how long does it take for the online now icon to go away when I log off&lt;br /&gt;-Where do I put the online now icon code&lt;br /&gt;-where do I get working online now icon code for myspace&lt;br /&gt;-where do I get online now icons for myspace&lt;br /&gt;-troubleshoot online now icons myspace&lt;br /&gt;-troubleshoot change online now icon&lt;br /&gt;-myspace online now html codes&lt;br /&gt;-how to change online now icon on myspace&lt;br /&gt;-How to put a custom online now icon on band page&lt;br /&gt;-troubleshooting online now code&lt;br /&gt;-why wouldn't my online now icon work?&lt;br /&gt;-myspace says online now after i sign off&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36806616-3258660676340413457?l=views-under-construction.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://views-under-construction.blogspot.com/2007/09/online-now-icon-icons-myspace-onlinenow.html</link><author>noreply@blogger.com (u∃∃l!∃)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>101</thr:total></item></channel></rss>