Top 10 FAQs
1) How do I find my MySpace Friend ID Number?
Easy!
Login to your MySpace account and click "View My: Profile"
Now look at the end of the website address like so...

Your profile friend id is the number at the end.
In this case it would be 123456789
2) How do I update my profile image?
3) What is "extra space" for my layout?
Extra Space is just that - extra space for you to put whatever you want (surveys, videos, pictures, widgets, etc.)
Here's what a layout looks like without extra space:

And here's what it looks like with extra space:

4) How do I find my Profile Picture URL?
Your Profile Picture URL is the address of the picture you want use for your main pic.
First locate the picture you want to use, if it's on your computer then upload it to your MySpace profile or Photobucket account. Once you have found your picture you want, you need to copy the image location.
If you're using Firefox, just right click on the image and choose "Copy image location" or if you're using Internet Explorer, right click and select properties... now copy the Image address.
5) How can I submit a layout?
If you have some quality art/photos/material that you think would work well as a layout AND you own or have copyright permission to use and distribute the work, send an e-mail over to submit(at)rubburlayouts(dot)com.
6) How can I use widgets from other websites?
If you want to use other people's widgets you can always put them in your EXTRA SPACE section.
To use other website's widgets in the widget section follow these directions:
1) Find the widget you want - make note that your new widget should not be wider or higher than 250 pixels or it could screw your layout up.
2) All three of your widgets are located between tags in the heroes section. You need to clear the code of the widget you want to replace. So here's what it looks like now:
<widget1>thewidget1code</widget1>
<widget2>thewidget2code</widget2>
<widget3>thewidget3code</widget3>
3) Paste the code in between the tags of the widget you're replacing. Say you wanted to replace widget 2...
<widget2>MY NEW WIDGET CODE</widget2>
4)Make sure the width and the height inside the code is equal to 250 or less.
7) How do I change the heading of a section?
All headings are between the <h2> and </h2> tags like so:
<h2>Heading</h2>
The easiest way to change a heading is to search for the heading you want to change with your browser's find tool when editing your profile. So if you wanted to change MYEXTRASPACE to BECKYSSPACE you could search for MYEXTRASPACE until you find it between those two tags. It would look like this in the code: <h2>MYEXTRASPACE</h2>
After you change it, it would like like this: <h2>BECKYSSPACE</h2>
The keyboard shortcut to find something is Ctrl-F
8) How do I update the about me section?
9) How do I update my extra space section?
10) How can I submit a widget?
We are always looking for sweet widgets to add to the site. If you're a developer or have rights to a widget, send an e-mail over to submit(at)rubburlayouts(dot)com
Frequently Asked Questions:How do I find my MySpace Friend ID Number?
Easy!
Login to your MySpace account and click "View My: Profile"
Now look at the end of the website address like so...

Your profile friend id is the number at the end.
In this case it would be 123456789
What is "extra space" for my layout?
Extra Space is just that - extra space for you to put whatever you want (surveys, videos, pictures, widgets, etc.)
Here's what a layout looks like without extra space:

And here's what it looks like with extra space:

What's a MySpace or YouTube video URL or EMBED code?
This is the code that MySpace or YouTube gives you to share videos. It looks like this:

How do I find my Profile Picture URL?
Your Profile Picture URL is the address of the picture you want use for your main pic.
First locate the picture you want to use, if it's on your computer then upload it to your MySpace profile or Photobucket account. Once you have found your picture you want, you need to copy the image location.
If you're using Firefox, just right click on the image and choose "Copy image location" or if you're using Internet Explorer, right click and select properties... now copy the Image address.
How do I know which time zone I'm in?
How do I update my profile image?
How do I update the about me section?
How do I update my details?
How do I update my extra space section?
How do I update my music section?
How do I update my movies section?
How do I update my television section?
How do I update my books section?
How do I update my main video?
How do I update my widgets?
How do I change the heading of a section?
All headings are between the <h2> and </h2> tags like so:
<h2>Heading</h2>
The easiest way to change a heading is to search for the heading you want to change with your browser's find tool when editing your profile. So if you wanted to change MYEXTRASPACE to BECKYSSPACE you could search for MYEXTRASPACE until you find it between those two tags. It would look like this in the code: <h2>MYEXTRASPACE</h2>
After you change it, it would like like this: <h2>BECKYSSPACE</h2>
The keyboard shortcut to find something is Ctrl-F
How can I submit a layout?
If you have some quality art/photos/material that you think would work well as a layout AND you own or have copyright permission to use and distribute the work, send an e-mail over to submit(at)rubburlayouts(dot)com.
How can I use widgets from other websites?
If you want to use other people's widgets you can always put them in your EXTRA SPACE section.
To use other website's widgets in the widget section follow these directions:
1) Find the widget you want - make note that your new widget should not be wider or higher than 250 pixels or it could screw your layout up.
2) All three of your widgets are located between tags in the heroes section. You need to clear the code of the widget you want to replace. So here's what it looks like now:
<widget1>thewidget1code</widget1>
<widget2>thewidget2code</widget2>
<widget3>thewidget3code</widget3>
3) Paste the code in between the tags of the widget you're replacing. Say you wanted to replace widget 2...
<widget2>MY NEW WIDGET CODE</widget2>
4)Make sure the width and the height inside the code is equal to 250 or less.
How can I submit a widget?
We are always looking for sweet widgets to add to the site. If you're a developer or have rights to a widget, send an e-mail over to submit(at)rubburlayouts(dot)com
How can I advertise on your website?
How can I change my background image?
This takes a little bit of css knowledge, but I'm sure you can manage. First, find an image you like on the internet and save it to your Photobucket, MySpace, etc. Next, go to edit your profile and search (Edit > Find) for this EXACT text:
body {background-image
After finding this, replace the URL to the right of this text with your own URL. It should look like this:
body {background-image: url(your image url here);
You should also make sure it's positioned correctly. Use the following tags to position it how you want it. You're going to have to change these tags, they're right next to the new url you put in.
background-position: left bottom; This positions it on the bottom left of the screen.
background-position: left top; This positions it on the top left of the screen.
background-position: center bottom; This positions it on the bottom center of the screen.
background-position: center top; This positions it on the center top of the screen.
background-attachment: fixed; This makes it so the background doesn't move.
background-attachment: scroll; This makes it so the background does move.
background-repeat: no-repeat; This makes it so the background doesn't repeat.
background-repeat: repeat; This makes it so the background does repeat.
background-repeat: repeat-x; This makes it so the background only repeats horizontally.
background-repeat: repeat-y; This makes it so the background only repeats vertically.
Where can I go for HTML/CSS help?
There's lots of places you can go!
First, try browsing through our frequently asked questions and see if we've already answered your question.
Next, you can try our
Rubbur Layouts Google Group.
If you're still having issues, just Google "CSS Tutorial" or "HTML Tutorial" or even "MySpace CSS Tutorial".
Something isn't working with your website or my layout!
We apologize for any problems you're having and we want to fix it.
Send an e-mail if you've found a problem with our site or one of our layouts to
submit(at)rubburlayouts(dot)com.
Please, if you need HTML or CSS assistance, visit our
Rubbur Layouts Google Group. Thanks!