mySpace Top Navigation Bar, Style or Hide
MySpace Top Menu Bar
This article is being updated to reflect the June 18-July 10 2008 changes. What you see is what I have so far.
Keep in mind that this area is being changed, by myspace, a lot. Keeping up with all of their changes is difficult and tedious (and possibly pointless).
If your drop down links, on the main menu, are not placing correctly, it is likely caused by an attempt to use a position:relative or position:absolute on something in the top menu/ad area structure. This WILL alter the positioning of the drop downs. They are positioned using absolute, and a calculated value. The earlier issues, related to this positioning referencing the body have been fixed, but this is still a potential issue.
Some Quick Links, for those who do not want to read everything:
Removing/Changing the Dark Blue Color Bkgd
Hide Top Menu
Style Top Area to include Ad background, Search area, Menu
Size Top Area to include Ad background, Search area, Menu
You can make it skinny (when I tested this on Sep 13 2008)
Hide Google Search and myspace Logo (does not hide shortcuts) WARNING: This may be against the rules. MySpace is not clear on this.
Change color of the link text AND drop down Arrow things in Top Menu
Change color of the drop down Arrow things in Top Menu
For an image, which shows the depth (parents) of the Top Menu Bar, please see this myspace page:
MySpace Page Showing div, table, cells and classes
I have updated the above page to show many of the new structure/classes
The page, I link to above, has been turned into a diagram, by adding style commands. I also added a color coded key to the right.
The dark Blue Color Bkgd
The dark blue (2358B8)coloring is applied at this level:
div div.profileWidth table td
The table which contains the top menu is NO LONGER in class navigationbar
It no longer has a class (they used an ID which we can not access, with code myspace will accept).
The navigation bar can now be addressed like this:
div.profileWidth table td div
Notice how many other things this potentially effects.
However, all of the other effected elements can be addressed separate, because they are all in an additional class
All the other elements (except the moot empty div), effected by the above statement, can be addressed like this:
div.profileWidth table td div.clearfix,
div.profileWidth table td div.clearfix div,
div.profileWidth table td div div
However,
visibility:hidden has been disabled for everything in the top ad/search/menu area.
display:none works sort of.
Any attempt to reverse a display:none, causes a problem with the drop down menus.
So I will use a solution which combines positioning with opacity.
This is NOT the only solution.
Code to Hide Top Menu
As of Today, July 3 2008, this code no longer works however if you scroll down a bit, you will find another solution, which did work when I tested it today.
Place this code at the bottom of the Meet, or wherever you put style blocks.
The below solution does work as of July 3 2008, but keep in mind that myspace may be trying to block the ability to hide this menu. Therefore expect more changes which break the various published solutions, including this one.
You can place this code at the very bottom of the to Meet section:
Code to Style Top Menu
If you first apply the block I have below, you will clearly see where each color/style gets set.
Then you can look at the color/style, and determine exactly what to change.
i.e. if you see PINK, and you know that everything PINK you want GREEN, change PINK to GREEN.
etc ...
You can place this code into the about me, meet, or interests section.
Here is another solution which also colors the little down arrows
If you want the down arrows a different color, than the text, see the code at the bottom of this article.
Size Top Menu
It is much more difficult than before to make the top menu smaller.
The below code block will make the top menu and search area narrow, to go with a skinny profile.
Place at very top of about me section:
This code will make the menu less high. (If used with above to make it skinny, you will need to alter a value in the above code, or in FireFox, your add will overlap your search area) It works as is in IE.
You can alter the px values to suit your needs.
Shadows in Top area
The shadow you see, is caused by background images.
These are applied at various levels.
Some other things formed with background images are:
- myspace logo to the left of the google search area
- the rounded corner look of the google search bar
- the google search logo next to the google search bar.
I do remove the shadow from the google search area, in my above example.
This shadow background image is applied at this level:
div.profileWidth div.clearfix
The myspace logo background image is applied at this level:
div.ProfileWidth div.clearfix h1
The "powered by" (http://x.myspacecdn.com/modules/common/static/img/header/en-us/poweredbygoogle.png) that shows up just before the word Google (which is in a span) is applied at a level:
div.profileWidth div.clearfix form
There is also a background image used to give the search box the curved look.
This one is interesting, because it is applied at multiple levels, and the code is in a style sheet.
Look at the image, it is interesting.
http://x.myspacecdn.com/modules/common/static/img/header/searchFldBg.gif
Then see how it is applied (also interesting).
the code is found in css file
http://x.myspacecdn.com/modules/common/static/css/header/profileheader002.css
The image is applied multiple times, at multiple levels, to accomplish the effect, of keeping the image look, even if resizing the input field.
Code to remove the application of the curved edge input image, without effecting other elements:
A similar image is applied to the search button
http://x.myspacecdn.com/modules/common/static/img/header/searchBtnBg.gif
Code to remove image shadow border thing:
Prevent Google Search from Wrapping to Next Line and Causing Centering Issuses
Sizing and Spacing of the Google Search, Shortcut, Logo Space
This space seems to want to wrap, if it does not have enough space (even if it looks like there is plenty of space).
BEST SOLUTION is to REMOVE whatever is causing the problem
The profile sizes this space just fine, if no other code is messing with it.
The below code solved the problem with some profiles. It really depends on what is causing the problem to start with.
I used the below code to prevent the wrap, and keep the google input box reasonably sized.
IF I am adjusting the top menu and google search to do a skinny profile, I can reasonably take them down to the same width as the ad banner.
I was able to get them down to under 600px, but getting the search centered in FireFox was difficult. (Margin values are set in the style sheet for the id, making it difficult to use margins to space and center. IE uses text-align, so I could center easily in IE).
The below code block takes the search and menu down to 720px width (the same as the ad banner.)
It also includes the same formatting I used in the previous code block:
Hide Google Search and MySpace Logo (does not hide shortcuts
If you do not know where to put this code, you can put it at the end of the Meet or Bio.
This code can go anywhere you are keeping style blocks, but must go OUTSIDE any existing style block. It has its own style tags. If in doubt, put at the very TOP or very Bottom of the Meet or Bio section.
If you want the arrows a different color, you can apply the below block
Change color of the drop down Arrow things in Top Menu
This code can go anywhere you are keeping style blocks, but must go OUTSIDE any existing style block. It has its own style tags. If in doubt, put at the very TOP or very Bottom of the Meet or Bio section.
More stuff on Styling this Space Later
xiii.us/ms/ad-search-menu
This article is being updated to reflect the June 18-July 10 2008 changes. What you see is what I have so far.
Keep in mind that this area is being changed, by myspace, a lot. Keeping up with all of their changes is difficult and tedious (and possibly pointless).
If your drop down links, on the main menu, are not placing correctly, it is likely caused by an attempt to use a position:relative or position:absolute on something in the top menu/ad area structure. This WILL alter the positioning of the drop downs. They are positioned using absolute, and a calculated value. The earlier issues, related to this positioning referencing the body have been fixed, but this is still a potential issue.
Some Quick Links, for those who do not want to read everything:
Removing/Changing the Dark Blue Color Bkgd
Hide Top Menu
Style Top Area to include Ad background, Search area, Menu
Size Top Area to include Ad background, Search area, Menu
You can make it skinny (when I tested this on Sep 13 2008)
Hide Google Search and myspace Logo (does not hide shortcuts) WARNING: This may be against the rules. MySpace is not clear on this.
Change color of the link text AND drop down Arrow things in Top Menu
Change color of the drop down Arrow things in Top Menu
For an image, which shows the depth (parents) of the Top Menu Bar, please see this myspace page:
MySpace Page Showing div, table, cells and classes
I have updated the above page to show many of the new structure/classes
The page, I link to above, has been turned into a diagram, by adding style commands. I also added a color coded key to the right.
The dark Blue Color Bkgd
The dark blue (2358B8)coloring is applied at this level:
div div.profileWidth table td
<a class=i href="xiii.us/ms/ad-search-menu">
myspace remove blue behind ad/search area by Eileen</a>
<style>
.i {display:none;}
div.profileWidth table td, x.i i .i {background-color:transparent !important}
</style>
You can change transparent to the color of your choice.The table which contains the top menu is NO LONGER in class navigationbar
It no longer has a class (they used an ID which we can not access, with code myspace will accept).
The navigation bar can now be addressed like this:
div.profileWidth table td div
Notice how many other things this potentially effects.
However, all of the other effected elements can be addressed separate, because they are all in an additional class
All the other elements (except the moot empty div), effected by the above statement, can be addressed like this:
div.profileWidth table td div.clearfix,
div.profileWidth table td div.clearfix div,
div.profileWidth table td div div
However,
visibility:hidden has been disabled for everything in the top ad/search/menu area.
display:none works sort of.
Any attempt to reverse a display:none, causes a problem with the drop down menus.
So I will use a solution which combines positioning with opacity.
This is NOT the only solution.
Code to Hide Top Menu
As of Today, July 3 2008, this code no longer works however if you scroll down a bit, you will find another solution, which did work when I tested it today.
Place this code at the bottom of the Meet, or wherever you put style blocks.
<a class=i href="xiii.us/ms/ad-search-menu">
Hide MySpace Main Menu Nav Bar</a>
<style>
div table div, .i {display:none;}
div.profileWidth div.clearfix, i i i,
div.profileWidth div.clearfix div {display:block;}
</style>
<i class=i>END code to Hide Top Nav Bar Main Menu</i>
The below solution does work as of July 3 2008, but keep in mind that myspace may be trying to block the ability to hide this menu. Therefore expect more changes which break the various published solutions, including this one.
You can place this code at the very bottom of the to Meet section:
<a class=i href="xiii.us/ms/ad-search-menu">
myspace Hide New Top Menu Nav Bar</a>
<style>
.i {display:none}
div.profileWidth {margin-top: -30px !important;}
div.profileWidth div {filter:alpha(opacity=0); opacity:0.0001}
div.profileWidth div.clearfix, i i i,
div.profileWidth div div {filter:none; opacity:0.9999}
div.profileWidth div.clearfix {position:relative; top:30px}
</style>
<i class=i>!!! End Code to Hide Top Menu !!!</i>
Code to Style Top Menu
If you first apply the block I have below, you will clearly see where each color/style gets set.
Then you can look at the color/style, and determine exactly what to change.
i.e. if you see PINK, and you know that everything PINK you want GREEN, change PINK to GREEN.
etc ...
You can place this code into the about me, meet, or interests section.
<a class=i href="xiii.us/ms/ad-search-menu">
myspace style top area ad/search/menu</a>
<style>
.i {display:none}
{! color top menu !}
div.profileWidth table td, i i i.x {background-color:black !important;}
{! color search area and behind ad different than top menu !}
div.profileWidth div {background-color:pink !important}
{! color link font in top menu !}
div.profileWidth div ul li a {font-family:comic sans ms; font-size:11px; font-weight:bold; color:pink !important}
{! link hover color !}
div.profileWidth div ul li a:hover {color:hotpink !important; background-color:green !important; display:block}
{! remove shadow in google search area !}
div.profileWidth div.clearfix, .i i i {background-image:none !important;}
</style>
<i class=i>!!! End Code to Style Top Ad/Search/Menu !!!</i>
Of course, you can change the style attribute values (such as color, font size, font weight, font family) to the values of your choice.Here is another solution which also colors the little down arrows
<a class="i" href="xiii.us/ms/ad-search-menu">
myspace top menu navbar change link color (text and arrows)</a>
<style>
.i {display:none;}
div.profileWidth table td ul *,
div.clearfix i i i {color:yellow !important font-family:comic sans ms !important; font-size:18px !important; font-weight:bold !important}
</style>
<i class="i">End Code to color links in top menu</i>
Code can go at the very top or very bottom of the about or meet sections.If you want the down arrows a different color, than the text, see the code at the bottom of this article.
Size Top Menu
It is much more difficult than before to make the top menu smaller.
The below code block will make the top menu and search area narrow, to go with a skinny profile.
Place at very top of about me section:
<a class="i" href="views-under-construction.blogspot.com/2007/03/myspace-navigationbar-top-menu-style.html">
Size myspace top menu skinny code by Eileen
</a>
<a class="i">
<style>
.x.i i, .i {display:none}
{! you can alter below width !}
div.profileWidth {width:513 !important }
div.profileWidth table:first-child tr:first-child div.clearfix {position:absolute !important; margin-top:0px !important; top:0px; left:50%; margin-left:-364px}
div[id*="shortcuts"] {position:relative !important; left:-150px !important; }
div.profileWidth table:first-child tr div.clearfix {margin-top:80px !important; position:relative;}
div.profileWidth table:first-child tr div.clearfix span div.profile {position:absolute !important; top:0px !important; right:1px !important;}
div.profile {_margin-top:80px !important;}
div.profileWidth div.clearfix div.profile,
div.srchfieldlayer {position:static !important; margin-left:0px;}
div.profile div.srchfieldlayer { position:relative !important; left:-6px !important; width:200px !important;}
div.profile div.srchfieldlayer div,
input.srchTextfld {width:200px !important; _width:130px !important}
div.srchButton,
div.srchButton div,
div.srchButton div input {width:48px !important; font-size:8px !important;}
{!do NOT use important below it will mess up search drop!}
div.profileWidth div.clearfix div div {position:static; margin-left:0px;}
div.profileWidth div.clearfix div {_position:absolute; _margin-left:-364px}
h1.mslogo {display:none !important}
</style>
end code to size menu and search areas
</a>
This code will make the menu less high. (If used with above to make it skinny, you will need to alter a value in the above code, or in FireFox, your add will overlap your search area) It works as is in IE.
You can alter the px values to suit your needs.
<a href="xiii.us/ms/ad-search-menu" class="i"> MySpace Top Menu Code by Eileen
<style>
div.profileWidth table td div ul {height:10px !important; padding-top:15px !important}
div.profileWidth table td div ul li * {font-size:6px !important; height:10px !important; line-height:10px !important}
{! below px value should be 29 minus the px height value used above !}
div.profileWidth div.clearfix {position:relative !important; top:15px !important; z-index:9 !important}
div.profileWidth {margin-top:-15px !important;}
.rail {display:none !important;}
div.profileWidth td {background-color:transparent !important;}
</style>
!! END Code to Decrease Top Menu Hight !!</a>
Shadows in Top area
The shadow you see, is caused by background images.
These are applied at various levels.
Some other things formed with background images are:
- myspace logo to the left of the google search area
- the rounded corner look of the google search bar
- the google search logo next to the google search bar.
I do remove the shadow from the google search area, in my above example.
This shadow background image is applied at this level:
div.profileWidth div.clearfix
The myspace logo background image is applied at this level:
div.ProfileWidth div.clearfix h1
The "powered by" (http://x.myspacecdn.com/modules/common/static/img/header/en-us/poweredbygoogle.png) that shows up just before the word Google (which is in a span) is applied at a level:
div.profileWidth div.clearfix form
There is also a background image used to give the search box the curved look.
This one is interesting, because it is applied at multiple levels, and the code is in a style sheet.
Look at the image, it is interesting.
http://x.myspacecdn.com/modules/common/static/img/header/searchFldBg.gif
Then see how it is applied (also interesting).
the code is found in css file
http://x.myspacecdn.com/modules/common/static/css/header/profileheader002.css
The image is applied multiple times, at multiple levels, to accomplish the effect, of keeping the image look, even if resizing the input field.
Code to remove the application of the curved edge input image, without effecting other elements:
<a class=i href="xiii.us/ms/ad-search-menu">
myspace remove image border of google search input box</a>
<style>
.i, i i.x {display:none;}
div.srchfield, div.x i i .i,
div.srchfield div {background-image:none !important;}
</style>
<i class=i>!!! End Code to remove border img on google search !!!</i>
A similar image is applied to the search button
http://x.myspacecdn.com/modules/common/static/img/header/searchBtnBg.gif
Code to remove image shadow border thing:
<a class=i href="xiii.us/ms/ad-search-menu">
myspace remove image border of google search button</a>
<style>
.i, i i.x {display:none;}
div.srchButton, div.x i i .i,
div.srchButton div {background-image:none !important;}
</style>
<i class=i>!!! End Code to remove border img on google search button !!!</i>
Prevent Google Search from Wrapping to Next Line and Causing Centering Issuses
Sizing and Spacing of the Google Search, Shortcut, Logo Space
This space seems to want to wrap, if it does not have enough space (even if it looks like there is plenty of space).
BEST SOLUTION is to REMOVE whatever is causing the problem
The profile sizes this space just fine, if no other code is messing with it.
The below code solved the problem with some profiles. It really depends on what is causing the problem to start with.
I used the below code to prevent the wrap, and keep the google input box reasonably sized.
<a class=i href="xiii.us/ms/ad-search-menu">
myspace size and prevent wrap in google search</a>
<style>
.i, i i.x, .rail {display:none;}
div.profile form {position:absolute; top:10px !important; right:10px !important;}
div.srchfield input {width:190px !important;}
</style>
<i class=i>!!! End Code to size google search space !!!</i>
IF I am adjusting the top menu and google search to do a skinny profile, I can reasonably take them down to the same width as the ad banner.
I was able to get them down to under 600px, but getting the search centered in FireFox was difficult. (Margin values are set in the style sheet for the id, making it difficult to use margins to space and center. IE uses text-align, so I could center easily in IE).
The below code block takes the search and menu down to 720px width (the same as the ad banner.)
It also includes the same formatting I used in the previous code block:
<a class=i href="xiii.us/ms/ad-search-menu">
myspace size menu and search, prevent wrap in google search</a>
<style>
.i, i i.x, .rail {display:none;}
div.profileWidth,
div.profileWidth table,
div.profileWidth table td {width:720px !important;}
div.profile form {position:absolute; top:10px !important; right:10px !important;}
div.srchfield input {width:190px !important;}
</style>
<i class=i>!!! End Code to size menu and search !!!</i>
Hide Google Search and MySpace Logo (does not hide shortcuts
If you do not know where to put this code, you can put it at the end of the Meet or Bio.
<a class="i" href="xiii.us/ms/ad-search-menu">
myspace Hide New Top Menu Nav Bar</a>
<style>
.i {display:none}
div.profile * {display:none !important;}
</style>
<i class=i>END CODE to Hide Google Search and MySpace Logo</i>
Change color of the links (text and arrows) in the main Top MenuThis code can go anywhere you are keeping style blocks, but must go OUTSIDE any existing style block. It has its own style tags. If in doubt, put at the very TOP or very Bottom of the Meet or Bio section.
<a class="i" href="xiii.us/ms/ad-search-menu">
myspace top menu navbar change link color (text and arrows)</a>
<style>
.i {display:none;}
div.profileWidth table td ul *,
div.clearfix i i i {color:yellow !important}
</style>
<i class="i">End Code to color links in top menu</i>
If you want the arrows a different color, you can apply the below block
Change color of the drop down Arrow things in Top Menu
This code can go anywhere you are keeping style blocks, but must go OUTSIDE any existing style block. It has its own style tags. If in doubt, put at the very TOP or very Bottom of the Meet or Bio section.
<a class=i href="xiii.us/ms/ad-search-menu">
myspace top menu navbar change color of link arrows</a>
<style>
.i {display:none;}
div.profileWidth table td ul small,
div.clearfix i i i {color:green !important}
</style>
<i class=i>End Code to color link arrows in top menu</i>
More stuff on Styling this Space Later
Thank you for Visiting; Have a Nice Day :-)
-I have code to customize myspace navigation links.
-And make navigation bar transparent
-How to change color of navigation bar
-eliminate hide pipes (lines) in navigation bar
-hide blue menu bar
-myspace menu font bold
-I have code to customize myspace navigation links.
-And make navigation bar transparent
-How to change color of navigation bar
-eliminate hide pipes (lines) in navigation bar
-hide blue menu bar
-myspace menu font bold
xiii.us/ms/ad-search-menu
Labels: mySpace navigationbar menu
55 Comments:
i need help pls.. im having trouble hiding my shortcuts form..i dont know what to do i tried everything i can think of..lolz...
here is my myspace prof.
myspace.com/keeper_of_keys
plspls help..XD..
the one im talking about has a code div#profilelinks it wont disappear..the farthest ive gone is making it transparent but i need it gone!!huhuhuhuhu..T-T
hello, i LOVE your blog. its been so helpful in my myspace endeavours :)
im having a problem with the top search bar. ive hidden it but it randomly repositions itself up and down the page thus making my text move up and down and not stay in the same place. is there any way to absolute position either the hidden search bar or my text?
hope you can help :) thankyou!
paige
Thank you Paige.
I need to look at your profile, and observe the symptom.
The top search bar should stay in the same position unless you have added code to do something to it
(or myspace has introduced a new bug).
Your own text, you can position it absolute, but unless you have prepared an outer wrapper for it, likely you will have to position it with reference to the whole page.
That may work well for you, or not.
It depends on your layout.
John
Sorry I missed your question earlier.
MySpace is going to great effort to prevent people from doing anything with the short cut thing.
It is still possible to relocate it off the page, but I am sure that will be blocked very soon.
I recommend just keeping it.
It isn't that bad.
Maybe color it or something.
I explain some options in this article:
To p search area
hi =)
is there a way to change the navigation bar background color. the code you have here doesnt work =/
sophea
Thank you for pointing that out.
I fixed it, the code above now works.
thank you so much for this !
my navigation bar appeared over 3 lines originally, i'd been trying for months to move it into one and your blog is the only one i've found that actually worked.
thank you so much !
HELLO EILEEN
THANKS FOR YOUR HELP SO FAR!
I AM TRYING TO ADD A LINK BANNER TO MY OWN MYSPACE CREATION. I HAD THE LINK BANNER ON THE SITE WHEN I HAS D MYGEN STANDARD TEMPLATE AND IT WORKED AND YOU WERE TAKEN TO ANOTHER SITE. NOT IT WONT WORK ALTHOUGH I CAN GET A BANNER ON TO THE PAGE. ANY IDEAS?
HOPE YOU ARE WELL
STEVE
Hi i am trying to hide myspace navibar links lines the bar is gone but the lines are still visual. please check myspace.com/rockport3000 so you can see what im talking about.l
Please help- the myspace navigation bar has returned, bigger, blockier, and accompanied by the myspace logo, complete with user's country detail. Ugh!
thankyou for any help you can give us in our time of need.
MLJ
your codes are amazingly effective. they're the only ones i've been able to make work.
but i can't find anywhere how to make my profile not be thousands of pixels wide...
can you have a look and see if the problem is identifiable?
http://myspace.com/trictsareforkids
Your site is Great. Thanks so much
and keep up the great work(:
Used the hide navigation code.
Thanks again (Y)
Hello! You're page is amazing and when I first saw the change i came here immediately and you were already working on a fix! I tried all of your fixes, sifting through my old DIV code and trying to move the old NavBar codes... but I can't get the ad to show and the banner to center... I've tried everything!! All your codes did exactly what they said they wouldn, they just never solved my center issue (I am seeing it on Firefox... thats gotta be bad!)
Please help!! I'd adore you so much! and we can send you a copy of the new DVD if you want!! heres the profile i'm working with: www.myspace.com/hedpe you can contact me via beth(at)suburbannoizerecords.com
Thank you so much in advance if you can help me out!!
Respect,
Beth Chapin
Your top div is covering it, among other things.
I don't remember everything I did to get it to show.
I removed some old code for hiding the top space.
Remove the block of code, you added, that I had for recovering the ad banner, that is what is causing the issue with your drop downs, sticking in the down position.
Take out all previously used top banner code, and hide top area code.
Keep taking out code until you see the ad banner.
Then add your elements back, one by one, checking for the location of the ad banner each time.
I re-did all my code for top banners.
I haven't fixed all the code on the blog yet, but I fixed the code in the code generator, for the top banners.
is there a way to switch/change the navigation bar into the "gray/silver" look it had? I saw a current myspace that has it rather than the "dark blue" one. And since i can't make the background (of the links) clear/transparent as I previously had, i'd prefer the silver one over the blue. Thanks in advance if you can help me! :)
Ariel,
It depends on the browser.
In IE7 and FireFox you can remove the blue (that is where the grey/silver look comes from, the partially clear image they place over the blue to give it the shadow).
However, in IE6, the only way I found to eliminate the blue, is to cover it.
If you want to turn a lot of things transparent (as I tend to do) you can do this:
body *, body.bodyContent * {background-color:transparent !important;}
Or to just get the ad/search/menu area:
div.profileWidth * {background-color:transparent !important}
But neither of those will remove the blue in IE6.
In IE, you have to cover it.
You can create a div, the size of the menu, color it any color you want, and then slip it between the blue and the links.
That is what I did on this profile:
My Myspace Page
I think I published the code in this article.
hey i found the image they use o create the shadow.....
http://x.myspacecdn.com/modules/common/static/img/header/bkg_msbar.png
can you make code from just knowing the URL for the IMG?
like this:div style="http://x.myspacecdn.com/modules/common/static/img/header/bkg_msbar.png" {display:none} /div
could you do that, or not?
ok well my last post meesed up....
but anyway heres the IMG src.....
http://x.myspacecdn.com/modules/com
mon/static/img/header/bkg_msbar.png
Eileen does your code remove the shadow that runs under the Top Menu? That is, the shadow running under 'Home,' 'Mail,' 'Profile' and so on?
Okay nevermind, I got it. Thanks!
Your codes work miracles. :>
Oh the codes aren't working for me. Any idea what could be the problem?
I cut en past the code for to hide the menu but it isn't working.
Thanks for your help :)
these were the only codes that were working perfectly for me, but when i checked my myspace this morning i noticed that they were no longer effective :[
please help.
thanks.
i think ur awesome! i love your codes! i reallyy have been looking everyywheree. one last favor?can you make a code to change the colors on the drop down menu? like the background color and the text color and the hover color of the text?
You are a great Genious!
I used your hide top nagivagtion code, works like a charm, hope they don't changed it again, I don't know why they don't want us to hide it....
THANKS ALOT!!
you seem to have the code to get rid of the shadow looking border. Do you have the code to get ride of it for the navbar (ie. home, mail, profile, friends, etc buttons?
you seem to have the code to get rid of the shadow looking border. Do you have the code to get ride of it for the navbar (ie. home, mail, profile, friends, etc buttons?
Thank you for the codes! The one to change the arrow colour of the top menu is great.
The code to "Hide Google Search and MySpace Logo" does not work as of 10th July, which is when I tried it.
Keep up the good work! :D
Thanks,
I fixed it.
But I am certain that they (myspace) does not want this hidden.
Their futile attempts to prevent such sort of baffle me.
anonymous,
It is much more difficult (if possible) to remove from the navbar.
It can be covered, you can slip something in between it and the actual links.
See my code for coloring the bar in IE6.
That strategy is no longer needed to color in IE6, but is still useful for hiding the shadow.
However, it will not work if you are wanting your background to show through, only if you are content with a solid color (or are so good at art placement you can create your own image, to use in the div, and have it align perfectly with your background image.)
thank you so much it worked i was looking everywhere and nothing work then i came to this website and it worked thank you sooooooooooooo much
hello and thnx for the help i just wanna noe if you r making or ur making a code to hide the myspace ads cuz my page would look bettar if you would b able to hide them thnx
No,
I can't do that, or myspace might block access to my site from myspace.
The ad isn't that bad, just live with it. advertising is what is driving internet innovation (and content theft for profit and all sorts of things).
Seriously, the ad it what makes myspace possible.
I modified your css for the navbar so that when the menu drops down and you hover over a link the top level doesnt turn white. However somehow now all the drop down links color is blue and ignoring color:yellow. Any suggestions as to what I have done wrong? You can view my page at www.myspace.com/immortalblackdragon
Here is what I have in my css:
{! Style Navigation Bar !}
.i {display:none}
{! color top menu !}
div.profileWidth table td, i i i.x {background-color:262626 !important;}
{! color search area and behind ad different than top menu !}
div.profileWidth div {background-color:black !important}
{! color link font in top menu !}
div.profileWidth div ul li a {font-family:comic sans ms; font-size:11px; font-weight:bold; background-color: 262626; color:yellow !important}
{! link hover color !}
div.profileWidth div ul li a:link {color:yellow !important; background-color:262626 !important;}
div.profileWidth div ul li a:hover {color:yellow !important; background-color:6c6c6c !important;}
div.profileWidth div ul li a:visited {color:yellow !important; background-color:262626 !important;}
div.profileWidth div ul li a:active {color:yellow !important; background-color:262626 !important;}
{! remove shadow in google search area !}
div.profileWidth div.clearfix, .i i i {background-image:none !important;}
i used one of your codes, thanks!
Hi i read through your blog and it helped a ton! thnx...i was wondering how to make my core image stretch out the entire page...i created the image on photoshop and it sized it at 1150 pixels wide and almost 800 pixels in length but it wont stretch the entire distance of the page even after i changed the width in the first step...where it starts at 900 then i changed it to my actual image width but it wont stretch...any response would be invaluable
THNX!
Tyro,
That should have worked for you.
Can you provide a link to your page, so I can look at it.
I should have some time to troubleshoot this weekend.
(Then I am going to try to answer a lot of questions that have been recently posted here).
Thank you so much.
Have been scouring net in order to find a code to cover the new myspace mods and yours is the only one that works!
x
helppppp.
how do i show the "google search bar"????
Hey there
Maybe you can help me with this question: i have a film myspace site, and I want to ad space between the "MYSPACE FILM" Logo at the top and the rest of the content down under (or even better: hide the MySPACE FILM LOGO line)
Do you know how?
Regards Jesper
Hey, I'm stuck fast and I'd be grateful if you could help me!
I'm doing a band myspace (www.myspace.com/exitleftmusic) and I want to get the navbar and search bar and everything above my header picture like this: www.myspace.com/failsafemusic
I've tried finding how they did it in their code but I can't find it...any ideas?
Thankyou!
Joe
go here:
Top Banner code Generator
Just put in the url to the image you want to use, and select where you want the image.
is there any way to make the god damned navigation bar white anymore, it has this fucking gray shit that overlaps anything white. I want to destroy myspace.
pretty talk
Hi there,
I posted a question regarding design help for a myspace page in some forum. I later got a reply from somebody who said he would do my page for money, or to check out your blog. I had already found your blog in the meantime- and i like to design and a bit artsi myself. hehe.
I was just wondering if you have any idea how many people you help? Thats pretty cool egh... I have been at it now for about a week and have been visiting this blog daily. You have the hottest HELP info on the net. I guess you see all the people post comments on this blog, but probably dont have a clue at how many you helped and sent on their little star way.
We all appreciate all the research and hard work you put into this project... actually, how do you know so much about their code?... Oh, i get it- your really Tom huh... that Tom guy at myspace?
No I am not Tom,
I have no idea how many people use the information on this blog, it gets a few thousand hits a day, nothing close to the number of hits received by some of the sites that hijack my work.
I do know I don't have time to help all the people who ask me.
I am glad that people find the information useful.
I learn this stuff from a combination of books and experimentation.
what are the colors i can use to change the color of the blue navigation bar?
what colors are available to use instead of trabsparent for the blue navigation bar
wow.. thx for the code's.
hi, i have a top banner compose by a picture and a slideshow. you can see it here http://www.myspace.com/wwwmyspacecompuchamagre
but now my trouble is that when i include a code to separate right and left tables all becomes in a chaos. top banner disappear and appear inside friends table. the code i use to separate tables is:
..
.a {move left column}
object, embed,
table table table {position:relative; left:-100px;}
table table table table {position:static;}
.a {move right column}
td.text table {position:relative; left:90px;}
td.text object, td.text embed,
td.
text table table {position:static;} ..
i need help please, i want my contact buttons (add me, message me etc.) at the top of the page, just like in these pages,
myspace.com/satyricon or myspace.com/truedevian
how do i do it? please tell me.
hay my names kaylie and i need help!!
how do u hide the Sponsored Links at the top of my page???? please help...........
can u email meeh the code anybody please thank you very much =)
fbfezzy123misskaylie@yahoo.com
Hello, please check out www.myspace.com/losthadon
I need help aligning my contact bar links with my custom image while keeping the entire thing centered on my page.
Also, I'd like to know how to resize the myspace search bar so it sits inside my side borders.
I am willing to make images for your personal use in return. E-mail me at dontactics@hotmail.com
Thanks in advance,
Los Tha Don
Fantastic!
I've just implemented a DIV overlay onto my page and was stuck on only one issue: hiding the Google search bar and myspace logo (because it wasn't displaying properly).
Your code worked without flaw and it was the only code I've found to succeed.
Congrats and thank you.
How do you make the top menu and the background of the myspace logo bar different?
please help =]
Post a Comment
Due to Excessive Spam, I have turned on comment moderation.
Links to this post:
Create a Link
<< Home