Log In · Register

 
 
Closed TopicStart new topic
MySpace FAQ's
*disco infiltrator*
post Nov 7 2005, 11:40 PM
Post #1





Guest






BEFORE POSTING A TOPIC, CHECK THE SCRIPTS, SEARCH, AND READ OVER THIS TOPIC FIRST. _smile.gif


Before even reading this topic, please check the Myspace Scripts section because you may find the answers to your questions there. Also, check the Resolved Myspace Topics Subforum at the top of this forum, because your question may have been answered before! If you have something you think should be included in the Frequently Asked Questions, post it in this topic.


Table of Contents
  1. Current Myspace Errors
  2. Common FAQ's
  3. Customizing Profile FAQ's Part 1
  4. Marquee FAQ's
  5. Picture Page FAQ's
  6. Myspace Default Navigation and Msplinks FAQs
  7. Myspace cB Friends
  8. How to make a div overlay?!
  9. Can I make a request for a layout?
 
*Intercourse.*
post Feb 21 2007, 01:46 PM
Post #2





Guest






Current Myspace Errors

Myspace errors always come and go. More than likely there isn't anything we can possibly do about them except wait them out too. If you find your error within this post more than likely your going to have to wait it out. Myspace is working and trying to find a solution for the problems they find out about.

To see all current myspace errors go here:
http://blog.myspace.com/index.cfm?fuseacti...;friendID=86892
As of September 10, 2007
  1. Errors are coming up when Editing profiles.
 
*Intercourse.*
post Feb 21 2007, 03:41 PM
Post #3





Guest






Common FAQ's
  • What's the code to hide the ad at the top?
    -Createblog doesn't support the ad removal being done
    since it is against myspace TOS (Terms of Service).
  • If you have a problem and your profile is private
    -Please provide a screen shot of your problem.
  • How do I find my friendID?
    -You can get your friendID as well as your top friendIDs by using this form: FriendID grabber
  • Where can I find a music URL/video URL for my Myspace?
    -Createblog.com does not support stealing bandwidth or direct linking to other sites, so please do not ask. The Big Book of Resources has sections that can help you find your URL's.
  • What is the code for _____?
    -Pretty much any set script or code for Myspace is present in Createblog's Myspace Scripts section. Check there before asking, and if what you're looking for isn't there, then go ahead and post a topic (pending you not finding it after searching for it!).
  • How do I choose what friends are displayed on my front page?
    -Myspace gives you a "Choose Your Top 8" option. It's in the bottom left corner of your friends box on your home page.
  • I changed my age to 16 and its still not changing off private!
    -Your profile will only be visible to everyone under 18 then. You can change your privacy settings so your profile is viewable to everyone, only friends, or everyone under 18 if you go to Account settings > Privacy settings > and pick one of these.

  • HOW DO I KNOW WHO'S SEEN MY PROFILE? WHERE CAN I FIND THE CODE TO A TRACKER? HOW DO I KNOW???
    -You can't. There are many out there, but they are against the terms of service.
  • The cb tracker doesn't show who visited my profile. It just gives these weird IP numbers and a location?
    -The cb tracker shows the amount of visitors . It wasn't made for myspace and it can't and won't ever show which of your friends visited your profile. Thats against myspace terms of service.
  • Where do I place my layout code? Its so confusing!
    -If your using a normal layout, post your codes in your about me. If your using a div you may have some parts that go in your Who I'd like to meet section too.
  • I'm trying to contribute one of my layouts; yet it keeps saying that I missed an required field or the next page doesn't even load. Whats wrong?
    -This has been happening a lot lately. Perhaps try a different computer or even clean out your cookies. Make sure your screen shot is exactly 1024 x 768px. It may just be a server problem also, so you can always try back later.
  • What size should your background image be?
    -The answer is . There is none. Because someones computer resolution is always going to be bigger than the size of your background. But for it to fit most make it 1024x768 .
  • How can I put my layout code in a scroll box?
    -Put it in a text area.
    CODE
    <textarea>LAYOUT CODE</textarea>
    • Keep in mind in MySpace blogs make sure the "view source" button is checked before inputting a text area, or else it won't display properly.
  • I just used a layout on this site, but the links aren't working correctly?
    -Please make sure your putting in your friend ID. Always make sure to read the designer comments on layouts as well wink.gif
  • I REALLY want to sign up for a myspace, yet it keeps telling 'There Was An Error Processing Your Request Please Try Again', what do I do??
    -Sorry, we can't help you. Perhaps clean out your cookies, or contact myspace and ask them.
  • Is there a myspace virus? My profile got hacked.
    -Read please happy.gif
    http://www.createblog.com/forums/index.php?showtopic=159361
  • How can I change my scroll bar colors in Firefox?
    - Sorry but there isn't any way to change the scroll bar colors in Firefox its only a feature in Internet Explorer.
    http://www.createblog.com/forums/index.php?showtopic=177758


 
*Intercourse.*
post Feb 25 2007, 11:32 PM
Post #4





Guest






Customizing Profile FAQ's Part 1
  • How do I hide the links at the top?
    -Put this into your about me section.
    CODE
    <style>body div table tbody tr td font {visibility:hidden;}
    body table div table tbody tr td font {visibility:visible;}</style>
  • How do I put my pictures in a box with a scrollbar?
    -Put this in the place where your pictures are displayed. Change things accordingly. Copy and paste <img src="URL OF IMAGE"><br> however many times needed for the amount of images you need to display.
    CODE
    <div style="width: 00px; height: 00px; background-color: ffffff; font: 8pt times new roman; overflow: auto;><img src="URL OF IMAGE #1"><br><img src="URL OF IMAGE #2"><br><img src="URL OF IMAGE #3"></div>
  • How do I make a list?
    Answer thanks to Kiera (mzkandi).
    -Bullet List
    CODE
    <ul>
    <li>1st Line
    <li>2nd Line
    <li>3rd Line
    <li>4th Line
    </ul>

    -Circle List
    CODE
    <UL Type="circle">
    <LI>1st Line
    <LI>2nd Line
    <LI>3rd Line
    <LI>4th Line
    </UL>

    -Square Bullet List
    CODE
    <UL Type="square">
    <LI>1st Line
    <LI>2nd Line
    <LI>3rd Line
    <LI>4th Line
    </UL>

    -Numbered List
    CODE
    <ol>
    <li>LINE 1</li>
    <li>LINE 2</li>
    <li>LINE 3</li>
    <li>LINE 4</li>
    </ol>
  • How do I add those cute little "message me" buttons? Or add me buttons, or contact buttons instead of having a big contact table?
    -Hide the contact table first:
    http://www.createblog.com/scripts/download.php?id=40
    then
    http://www.createblog.com/scripts/download.php?id=80
    Replace accordingly.
  • How do I hide my friends and comments?
    -http://www.createblog.com/scripts/download.php?id=67
  • How do I hide my friends only?
    -http://www.createblog.com/scripts/download.php?id=44
  • How do I hide my comments only?*may need to adjust height!
    http://www.createblog.com/scripts/download.php?id=61
  • I REALLY want to make a top six instead of a top eight.
    -Check these:
    http://www.createblog.com/forums/index.php?showtopic=83483
    http://www.createblog.com/forums/index.php?showtopic=84666
    http://www.r4wr.com/friends/
  • How do I switch my profile? Make the things on the left onto the right?
    -Use this: http://www.createblog.com/forums/index.php?showtopic=122507
  • How do I hide the link that says VIEW ALL SO&SO Friends?
    -Add this to your about me section:
    CODE
    <style type=text/css>
    a.redlink{display:none; visibility:hidden;}
    <style>
  • How do I center my profile?Thanks to Ricky (anime.essence)
    -Add this to your about me:
    CODE
    <style type="text/css">td,td td,td td td,td td td td{text-align:center}</style>
  • How do I change the amount of friends showing in my top friends?thanks to theoutlaw
    -About your Top friends. A lot of people have asked me how to get either Top 4, 8, 12, 16, and even 20 or 24. Here below is the directions in order to display you Top 4 or higher.
    1. Go to your home page and click the "Change my Top Friends" link under your friends. (This should be near your friend space.)
    2. In the upper left hand corner select Top (4,8,12,16,20,24) from the drop down.
    3. You guys can take it from there. Just drag and save.
  • I hide the bottom links, but theres this big grey area where they use to be?
    -Put this in your about me instead of the code you choose to hide your bottom links.
    CODE
    <style type=text/css>
    table tr td div font {display: none;}
    </style>

    <style>

    table td div {visibility:hidden;}
    table table td div {visibility:visible;}
    tr {background:transparent;}</style>

    <style type=text/css>
    table tr td div div {
    visibility:hidden;
    display:none;
    border:0px!important;
    background-color:transparent;
    }
    </style>
  • How Do I customize my private profile?
    To have a skin on your private page, you have to use the 'Profile editor' that Tom made.
    Click Here



 
*Intercourse.*
post Feb 26 2007, 12:08 AM
Post #5





Guest






Marquee FAQ

Recently it seems almost as if everyone is asking how to edit their font a certain way, or how to edit their marquee as well. In this topic there you will be able to find countless ways to edit your marquee and your font on myspace, and in your bulletins.
  • Normal marquee (travels to the left)

    CODE
    <marquee>TEXT/IMG</marquee>

  • Normal marquee(travels to the right)

    CODE
    <MARQUEE DIRECTION=RIGHT>TEXT/IMG</marquee>

  • Custom width marquee

    CODE
    <MARQUEE WIDTH=200>TEXT/IMG</MARQUEE>

    -Want a custom height added to that? Use this:
    CODE
    <MARQUEE WIDTH=200 HEIGHT=50>TEXT/IMG</MARQUEE>

  • Change Behavior
    -Alternate-Starts from one end and on reaching opposite end it moves in the opposite direction.

    CODE
    <MARQUEE BEHAVIOR=ALTERNATE>TEXT/IMG</marquee>

  • Slow down marquee
    -Higher the number, slower the marquee will go. (Change the 500)
    CODE
    <MARQUEE SCROLLDELAY=500>TEXT/IMG</marquee>

  • Speed up Marquee
    -Higher the number, faster the marquee wil go. (Change the 20)
    CODE
    <MARQUEE SCROLLAMOUNT=20>TEXT/IMG</marquee>

  • Background Colors
    -Have any background color you want, just make sure to change the color code to what color you want.(c38383)

    CODE
    <MARQUEE BGCOLOR=c38383>TEXT/IMG</marquee>
Any others that you may thank there is or want to know about just reply. happy.gif
 
*Intercourse.*
post Mar 8 2007, 08:29 PM
Post #6





Guest






Picture Page FAQ's

Being able to add a little color or graphic edge to your picture edge has always been a popular thing. Although it seems that the codes that once worked have yet to work again. End of your problems editing your picture page stops here. All these codes have been tested and work _smile.gif If you have any problems with any of them, make your own topic in myspace help or feel free to PM me.
*Important- Please remember that one code goes in to one caption.
  • Background color
    CODE
    <style>body{background-color:###}</style>
    Edit the ### with the color you would like as your background.
  • Background Image - repeating
    CODE
    <style>body{background:url(URL)}</style>
    Please make sure to always check if you the full URL shows, make sure to use tinypic.com to upload your images and if the URL is still to long, go to notlong.com and make a shorter URL for the image.
  • Background image not repeated
    CODE
    <style>body{background-repeat:no-repeat}</style>
    This is just another script that you can add to your caption to not make the background color repeated.
  • Position Background Image
    CODE
    <style>body{background-position:bottom left}</style>

  • Make blue and white tables transparent
    CODE
    <style>div{background:transparent!important}</style>

  • Make red arrows/text Disappear
    CODE
    <style>.txtRed{visibility:hidden;}</style>

  • Change Link Colors
    CODE
    <style>a{color:000000!important}</style>

  • Change the text color
    CODE
    <style>td{color:COLOR}</style>

  • How do I get the Polaroid effect on my pictures?!
    -First add this to one of your pictures, but make sure its not your last because the second code needs to placed under it.
    CODE
    <style>td img{border:1px solid;border-color:COLOR}</style>
    For COLOR you can either write white or black or just the hex colors.
    CODE
    <style>td a img{border-width:10px 10px 30px 10px!important}</style>
    Controls the size of the borders. From first to last the first; top, right, bottom, then left. (30px is bottom)
 
freeflow
post Jun 25 2007, 10:24 AM
Post #7


t-t-t-toyaaa
********

Group: Official Member
Posts: 19,821
Joined: Apr 2004
Member No: 11,270



Mypsace Requests FAQ

Since the introduction of cB4 The myspace request forums along with all other request forums have been removed. Due to that factor all requests need to be made through profiles. You may
  • Comment someone's profile to see who makes custom layouts or designs.
  • PM someone who you think may make custom layouts or designs.
Please refrain from making a topic about it because it will be closed by Design Staff. Try your best to find someone who will may be able to help you. As a note its best to check out the people that submit layouts to cB or post graphics. Try not to bug them but ask nicely and politely.
 
IVIike
post Oct 15 2007, 07:49 PM
Post #8


Hey, I'm Mike
******

Group: Staff Alumni
Posts: 1,272
Joined: May 2006
Member No: 406,241



Default Myspace Navigation Links
    Now that there is the whole msplinks security feature when making a Layout or creating your own navigation can be a bit challenging. There is no way around it, but here are the basic links so you can easily edit your profile. _smile.gif
  • How do I get around Msplinks?
    As of right now there is no know way to get around them that is allowed under the Myspace Terms of Service.
  • Will my image maps still work?
    Yes myspace links doesn't affect image maps.
  • What are the Default Myspace Navigation Links?

    Send Message
    <a href="http://mail.myspace.com/index.cfm?fuseaction=mail.message&friendID=xxxxxx">Send Message</a>

    Add to Friends
    <a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=xxxxxx">Add to Friends</a>

    Instant Message

    <a href="http://chat.myspace.com/index.cfm?fuseaction=messenger&strDestinationUserID=xxxxxx&sendType=0">Instant Message</a>

    Add to Group
    <a href="http://groups.myspace.com/index.cfm?fuseaction=groups.addtogroup&friendID=xxxxxx">Add to Group</a>

    Forward to Friend
    <a href="http://mail.myspace.com/index.cfm?fuseaction=mail.forward&friendID=xxxxxx&f=forwardprofile">Forward to Friend</a>

    Add to Favorites
    <a href="http://collect.myspace.com/index.cfm?fuseaction=user.addToFavorite&friendID=xxxxxx&public=0">Add to Favorites</a>

    Block User
    <a href="http://collect.myspace.com/index.cfm?fuseaction=block.blockUser&userID=xxxxxx">Block User</a>

    Rank User:
    <a href="http://collect.myspace.com/index.cfm?fuseaction=RateImage.UserRating&UserID=xxxxxx">Rank User</a>

    View All Pictures
    <a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=xxxxxx">View All Pictures</a>

    View Videos
    <a href="http://vids.myspace.com/index.cfm?fuseaction=vids.uservids&friendID=xxxxxx&n=2">View Videos</a>

    Subscribe To Blog
    <a href="http://blog.myspace.com/index.cfm?fuseaction=blog.ConfirmSubscribe&friendID=xxxxxx">Subscribe To Blog</a>

    View All Blogs

    <a href="http://blog.myspace.com/index.cfm?fuseaction=blog.ListAll&friendID=xxxxxx">View All Blogs</a>

    View All Friends
    <a href="http://home.myspace.com/index.cfm?fuseaction=user.viewfriends&friendID=xxxxxx">View All Friends</a>

    View All Comments
    <a href="http://www.myspace.com/index.cfm?fuseaction=user.viewComments&friendID=xxxxxx">View All Comments</a>

    Add Comment
    <a href="http://comments.myspace.com/index.cfm?fuseaction=user&circuitaction=viewProfile_commentForm&friendID=xxxxxx">Add Comment</a>

    View All Groups
    <a href="http://groups.myspace.com/index.cfm?fuseaction=groups.myGroups&userID=xxxxxx">View All Groups</a>

    Report User (for Inappropriate Content)
    <a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=misc.contactInput&ProfileContentID=xxxxxx">Report User (for Inappropriate Content)</a>

    Make sure you copy the shortcuts :] and replace the XXXXXX with your Friend ID Any questions you can PM a Design Staff Moderator
 
Insurmountable
post Nov 10 2007, 04:38 PM
Post #9


Cornflakes :D
*******

Group: Staff Alumni
Posts: 4,541
Joined: Dec 2005
Member No: 322,923



How do I make a Div Overlay?


If you want to know how to make a div overlay please check out the tutorials we have _smile.gif

Simple Div Overlay:
http://www.createblog.com/forums/index.php?showtopic=97397

How to make a Div Step by Step Tutorial:
http://www.createblog.com/forums/index.php?showtopic=142922

After reviewing these if you have any further questions feel free to make a topic in myspace support asking your questions thumbsup.gif
 
Insurmountable
post Nov 10 2007, 04:42 PM
Post #10


Cornflakes :D
*******

Group: Staff Alumni
Posts: 4,541
Joined: Dec 2005
Member No: 322,923



Can I request a layout?



Do you want to request a PAID or FREE Myspace Layout?

Read the information and post your request in this thread:
http://www.createblog.com/forums/index.php?showtopic=192328
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: