Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Signup for Free!
-More Features-
-Far Less Ads-
About   Users   Help
Users & Guests Online
On Page: 1
Directory: 97
Entire Site: 6 & 881
Page Staff: pokemon x, pennylessz, Barathemos, tgags123, alexanyways, supercool22, RavusRat,
04-20-24 12:54 AM

Forum Links

Related Threads
Coming Soon

Thread Information

Views
7,500
Replies
20
Rating
6
Status
CLOSED STICKY
Thread
Creator
soxfan849
06-15-12 02:17 PM
Last
Post
Lazlo Falconi
06-19-12 08:01 PM
Additional Thread Details
Views: 1,891
Today: 0
Users: 24 unique
Last User View
01-26-23
supercool22

Thread Actions

Thread Closed
New Thread
New Poll
Order


2 Pages
>>
 

How to make a layout

 

06-15-12 02:17 PM
soxfan849 is Offline
| ID: 602425 | 703 Words

soxfan849
Level: 76


POSTS: 723/1490
POST EXP: 106261
LVL EXP: 4005058
CP: 5193.6
VIZ: 222680

Likes: 5  Dislikes: 0
A few people have asked for help making layouts, and I figured it would be better to explain how to make a layout than to just do it for people. So I'll go over how I make a layout bit by bit and try to explain what I'm doing. This will span over a couple posts, because it's easier for me to break it up into pieces, and it'll probably be easier to follow that way. I'll edit this post later and link directly to the next relevant post.

So before you read anything else that I have to say, read Zamiel's post here about making layouts. Ignore the part where he tells you not to make a layout if you don't know what you're doing, because that's where I come in. But everything else is pretty good advice.

Anyway, let's get started. First we'll start off with a div element for the background image. As far as you care an element always has both an opening and a closing tag. You should never forget to close your tags. So to begin, put the opening tag in your header:



And put the closing tag in your signature:



Here's what that should look like.

Now we'll get to some styling. The first thing I do is choose the size of my layout. I want it to be as wide as my screen and 500 pixels tall (the limit according to the layout rules). So let's set the size of our background by changing the div that was in our header. It'll look like this:



A lot is going on in there. First, to add styling to our div, we just add the word style followed by an equals sign. Everything that we want to change in the style is enclosed in quotes. Then the name of the property is written, followed by a colon, then we write the value that we want assigned to that property, and finally we end with a semicolon. Rinse and repeat for every property that you want to change.

For our width, we want 100% so that anyone can view our layout just fine even if they have a smaller screen than us. For the height, the value is set at 500 pixels (there are other measurements used for sizes, so px is written after a value that is intended to be measured by pixels).

The next thing I add to a layout is an image. You can use whatever image you want for your layout as long as it's hosted by Vizzed and is under 200kb. Here's what my code looks like:



The value in the parentheses that follow the letters url is where you put the URL of your image. no-repeat just means that the image won't repeat itself to fill the post. Feel free to remove that or put repeat-x and see what happens. Or if you use an image that isn't 500 pixels tall, try using repeat-y.

Make sure that your code looks like this before continuing. And here's what the preview should look like.

Next we'll do something that's usually not very practical, but that can be quite useful. Right now, if you're using the same image as me, you can't really see what the image is. It's far to big too be seen in its entirety. So we'll scale the image to only be as big as our post.



The first % is for the width and the second is for the height of the image. Always keep in mind that this could make your background look scrunched up if you use a wide image and someone has a smaller screen than you. It's not often something practical, but as you can see with my layout image, it can be useful sometimes.

Anyway, that's it for the background. In another post I'll explain how I go about making a text box (it'll probably be up tomorrow or Sunday). Let me know if you need help or if you have any feedback. And if you're new to this, I definitely suggest playing with the values a bit to see how it changes things.
A few people have asked for help making layouts, and I figured it would be better to explain how to make a layout than to just do it for people. So I'll go over how I make a layout bit by bit and try to explain what I'm doing. This will span over a couple posts, because it's easier for me to break it up into pieces, and it'll probably be easier to follow that way. I'll edit this post later and link directly to the next relevant post.

So before you read anything else that I have to say, read Zamiel's post here about making layouts. Ignore the part where he tells you not to make a layout if you don't know what you're doing, because that's where I come in. But everything else is pretty good advice.

Anyway, let's get started. First we'll start off with a div element for the background image. As far as you care an element always has both an opening and a closing tag. You should never forget to close your tags. So to begin, put the opening tag in your header:



And put the closing tag in your signature:



Here's what that should look like.

Now we'll get to some styling. The first thing I do is choose the size of my layout. I want it to be as wide as my screen and 500 pixels tall (the limit according to the layout rules). So let's set the size of our background by changing the div that was in our header. It'll look like this:



A lot is going on in there. First, to add styling to our div, we just add the word style followed by an equals sign. Everything that we want to change in the style is enclosed in quotes. Then the name of the property is written, followed by a colon, then we write the value that we want assigned to that property, and finally we end with a semicolon. Rinse and repeat for every property that you want to change.

For our width, we want 100% so that anyone can view our layout just fine even if they have a smaller screen than us. For the height, the value is set at 500 pixels (there are other measurements used for sizes, so px is written after a value that is intended to be measured by pixels).

The next thing I add to a layout is an image. You can use whatever image you want for your layout as long as it's hosted by Vizzed and is under 200kb. Here's what my code looks like:



The value in the parentheses that follow the letters url is where you put the URL of your image. no-repeat just means that the image won't repeat itself to fill the post. Feel free to remove that or put repeat-x and see what happens. Or if you use an image that isn't 500 pixels tall, try using repeat-y.

Make sure that your code looks like this before continuing. And here's what the preview should look like.

Next we'll do something that's usually not very practical, but that can be quite useful. Right now, if you're using the same image as me, you can't really see what the image is. It's far to big too be seen in its entirety. So we'll scale the image to only be as big as our post.



The first % is for the width and the second is for the height of the image. Always keep in mind that this could make your background look scrunched up if you use a wide image and someone has a smaller screen than you. It's not often something practical, but as you can see with my layout image, it can be useful sometimes.

Anyway, that's it for the background. In another post I'll explain how I go about making a text box (it'll probably be up tomorrow or Sunday). Let me know if you need help or if you have any feedback. And if you're new to this, I definitely suggest playing with the values a bit to see how it changes things.
Vizzed Elite
The Reaper


Affected by 'Laziness Syndrome'

Registered: 01-09-11
Location: soxfan849
Last Post: 2713 days
Last Active: 2550 days

Post Rating: 5   Liked By: juuldude, Mistress, Poka Mocha, Sidewinder, Sorinkun,

06-15-12 04:55 PM
Eddy88 is Offline
| ID: 602517 | 42 Words

Eddy88
Level: 140


POSTS: 2871/6130
POST EXP: 171931
LVL EXP: 32883386
CP: 7813.9
VIZ: 293067

Likes: 0  Dislikes: 0
Nice thread, and very useful... I ever wanted to make a layout by coding it by myself... (I used the coding that Gal used on a previous layout he made for me).

I'll start experimenting with this soon, thanks for help.

Nice thread, and very useful... I ever wanted to make a layout by coding it by myself... (I used the coding that Gal used on a previous layout he made for me).

I'll start experimenting with this soon, thanks for help.

Vizzed Elite
[7:43 PM]mlb789:Quote me


Affected by 'Laziness Syndrome'

Registered: 06-13-11
Location: Argentina
Last Post: 3854 days
Last Active: 3803 days

06-15-12 08:20 PM
Lazlo Falconi is Offline
| ID: 602595 | 17 Words

Lazlo Falconi
Level: 99


POSTS: 1496/2750
POST EXP: 199963
LVL EXP: 9658947
CP: 3100.7
VIZ: 182754

Likes: 0  Dislikes: 0
I wish more people would use width:100% instead of the actual width of their screen... Good thread.
I wish more people would use width:100% instead of the actual width of their screen... Good thread.
Vizzed Elite
The Shake Zula


Affected by 'Laziness Syndrome'

Registered: 01-07-12
Location: Cartoon Hell
Last Post: 1404 days
Last Active: 1278 days

06-15-12 08:28 PM
legacyme3 is Offline
| ID: 602596 | 14 Words

legacyme3
Lord Leggy - King of IT
Level: 268


POSTS: 17084/27250
POST EXP: 2003421
LVL EXP: 317010367
CP: 42531.1
VIZ: 2982476

Likes: 0  Dislikes: 0
Lazlo Falconi :

WAIT YOU MEAN YOU DONT LIKE IT WHEN PEOPLE STRETCH THE PAGE?
Lazlo Falconi :

WAIT YOU MEAN YOU DONT LIKE IT WHEN PEOPLE STRETCH THE PAGE?
Vizzed Elite
6-Time VCS Winner

One Leggy.
One Love.
One Dream.


Affected by 'Laziness Syndrome'

Registered: 09-14-10
Location: https://discord.gg/YCuUJz9
Last Post: 1313 days
Last Active: 1313 days

06-15-12 08:42 PM
Lazlo Falconi is Offline
| ID: 602603 | 16 Words

Lazlo Falconi
Level: 99


POSTS: 1497/2750
POST EXP: 199963
LVL EXP: 9658947
CP: 3100.7
VIZ: 182754

Likes: 0  Dislikes: 0
legacyme3 : Quit spamming in my forum you, or I'll report you to the locals globals Admin!
legacyme3 : Quit spamming in my forum you, or I'll report you to the locals globals Admin!
Vizzed Elite
The Shake Zula


Affected by 'Laziness Syndrome'

Registered: 01-07-12
Location: Cartoon Hell
Last Post: 1404 days
Last Active: 1278 days

06-15-12 09:54 PM
starwars293 is Offline
| ID: 602625 | 13 Words

starwars293
Level: 109


POSTS: 2308/3425
POST EXP: 104399
LVL EXP: 13675946
CP: 3101.7
VIZ: 139637

Likes: 0  Dislikes: 0
Lazlo Falconi : Yes, but he's your boss. Oh Snap! You just got pwned!
Lazlo Falconi : Yes, but he's your boss. Oh Snap! You just got pwned!
Trusted Member

Affected by 'Laziness Syndrome'

Registered: 07-22-11
Location: Canada
Last Post: 2802 days
Last Active: 1248 days

06-16-12 01:05 AM
Lazlo Falconi is Offline
| ID: 602670 | 6 Words

Lazlo Falconi
Level: 99


POSTS: 1498/2750
POST EXP: 199963
LVL EXP: 9658947
CP: 3100.7
VIZ: 182754

Likes: 0  Dislikes: 0
starwars293 : Spamming will not be tolerated.
starwars293 : Spamming will not be tolerated.
Vizzed Elite
The Shake Zula


Affected by 'Laziness Syndrome'

Registered: 01-07-12
Location: Cartoon Hell
Last Post: 1404 days
Last Active: 1278 days

06-16-12 01:05 AM
is Offline
| ID: 602671 | 9 Words


JigSaw
Level: 164


POSTS: 6727/7936
POST EXP: 584185
LVL EXP: 57382746
CP: 8045.8
VIZ: -46031833

Likes: 0  Dislikes: 0
while(legacyideas!=lazloideas){
fkmylife++;postspam++;}
header(Location: somewhere else besides here);
exit(thread);
while(legacyideas!=lazloideas){
fkmylife++;postspam++;}
header(Location: somewhere else besides here);
exit(thread);
Vizzed Elite
PHP Developer, Security Consultant

Affected by 'Laziness Syndrome'

Registered: 04-06-06
Location: Area 51
Last Post: 1728 days
Last Active: 1723 days

06-16-12 01:06 AM
Lazlo Falconi is Offline
| ID: 602672 | 6 Words

Lazlo Falconi
Level: 99


POSTS: 1499/2750
POST EXP: 199963
LVL EXP: 9658947
CP: 3100.7
VIZ: 182754

Likes: 0  Dislikes: 0
JigSaw : Haha, post of the month!
JigSaw : Haha, post of the month!
Vizzed Elite
The Shake Zula


Affected by 'Laziness Syndrome'

Registered: 01-07-12
Location: Cartoon Hell
Last Post: 1404 days
Last Active: 1278 days

06-16-12 01:37 AM
legacyme3 is Offline
| ID: 602676 | 6 Words

legacyme3
Lord Leggy - King of IT
Level: 268


POSTS: 17086/27250
POST EXP: 2003421
LVL EXP: 317010367
CP: 42531.1
VIZ: 2982476

Likes: 0  Dislikes: 0
JigSaw :

The irony. The bloody irony!
JigSaw :

The irony. The bloody irony!
Vizzed Elite
6-Time VCS Winner

One Leggy.
One Love.
One Dream.


Affected by 'Laziness Syndrome'

Registered: 09-14-10
Location: https://discord.gg/YCuUJz9
Last Post: 1313 days
Last Active: 1313 days

06-16-12 09:10 PM
catfight09 is Offline
| ID: 602975 | 31 Words

catfight09
Level: 94


POSTS: 2232/2328
POST EXP: 74403
LVL EXP: 8061022
CP: 395.7
VIZ: 44950

Likes: 0  Dislikes: 1
Yeah, this is a SUPER useful thread. I made most of my Lati layout based off of it. Now, all I need is the transparent box, and I think I'm done.
Yeah, this is a SUPER useful thread. I made most of my Lati layout based off of it. Now, all I need is the transparent box, and I think I'm done.
Trusted Member
Final Fantasy XIII player


Affected by 'Laziness Syndrome'

Registered: 03-14-10
Last Post: 3238 days
Last Active: 1940 days

06-18-12 03:21 AM
soxfan849 is Offline
| ID: 603516 | 776 Words

soxfan849
Level: 76


POSTS: 729/1490
POST EXP: 106261
LVL EXP: 4005058
CP: 5193.6
VIZ: 222680

Likes: 2  Dislikes: 0
Before I say anything, I'm writing this at 4:00 AM and I'm too tired to proofread. If I say anything wrong or that just doesn't make sense, please let me know so I can fix it. I've been testing everything as I go, though, so it should be good.

Now onto how to make a text box. There's quite a lot than can be done here, and I'll do my best to cover as much as possible. But I'm bound to leave something off. So if there's something that you want to know about, or you think should be explained, and I leave it out, feel free to post and mention it.

Also, I won't be posting the code for the background image unless I need to. And when I do, I'll make sure to mention it. When I don't mention it, assume I'm talking about the code for the text box.

To start making the text box, we add a second div inside of the first. It'll look like this. Don't forget to put a second closing tag in the signature.

Next we'll add a border to the text box. This makes it easier to see how our positioning and dimensions look. Here's what my code looks like:



In that one attribute, we really changed three things. First, we set the width of the border to one pixel. Then we set the style of the border to solid. And finally the color is set to red. Take some time to play around with these whenever you want (google search some of the different styles).

The next thing to change is the size. I for one don't like to see my text box stretch across the entire layout. So we'll change the width and height of our text box in the same fashion as our background. Here's how I set mine:



Using percentages can make the text box too big if the person's screen is bigger than the image. But because I stretched the image to fit the post, that won't be a problem. Using fixed values will work whenever needed, though.

After that I like to move the text box into a good position. For this I like to use the position attributes, but margin works as well (you'd have to add overflow:auto; to the background image's style if you wanted to use margin). I'll just go over how I would do it, but feel free to ask for help if you want to use margins. Here's my code:



First, you set the position to relative. That just makes it so that you're setting the position based on the container of the text box (which in our case is the background image). Then just set the positions of the top, left, right, or bottom of your image. I set the top and the left because these are the easiest to use when moving our box around. It's worth noting that fixed values can be used instead of just percentages.

Once we have the position of our text box all set up, I like to make a background color. I use rgba to make it somewhat transparent without affecting the text. Here's what the code looks like after that:



When using rgba you enter 4 numbers. The first three are the values of red, green, and blue respectively. The minimum is 0, and the max is 255. The fourth value determines how transparent it is, with 1 being not at all and 0 being completely transparent. Color values can be found easily enough with a little google searching.

Now once the background color has been set, you'll see that both the text box and text are white (assuming you used my code). That makes it difficult to read the post, which is annoying for everyone else. Fixing that is very easy, though:



The color attribute changes the color of the text inside of our div. That's all we need to do. I just used rgb which is exactly the same as rgba except that you can't change the transparency.

After that, add some padding between the border and our text. This is also very straightforward.



And finally, let's make it so that our text box scrolls when we type a lot. Just add overflow:auto; to the styling. That's literally all it takes.



And that's all I can think of for now. It's enough to get some pretty snazzy looking layouts, at the very least. Here's what mine looks like.
Before I say anything, I'm writing this at 4:00 AM and I'm too tired to proofread. If I say anything wrong or that just doesn't make sense, please let me know so I can fix it. I've been testing everything as I go, though, so it should be good.

Now onto how to make a text box. There's quite a lot than can be done here, and I'll do my best to cover as much as possible. But I'm bound to leave something off. So if there's something that you want to know about, or you think should be explained, and I leave it out, feel free to post and mention it.

Also, I won't be posting the code for the background image unless I need to. And when I do, I'll make sure to mention it. When I don't mention it, assume I'm talking about the code for the text box.

To start making the text box, we add a second div inside of the first. It'll look like this. Don't forget to put a second closing tag in the signature.

Next we'll add a border to the text box. This makes it easier to see how our positioning and dimensions look. Here's what my code looks like:



In that one attribute, we really changed three things. First, we set the width of the border to one pixel. Then we set the style of the border to solid. And finally the color is set to red. Take some time to play around with these whenever you want (google search some of the different styles).

The next thing to change is the size. I for one don't like to see my text box stretch across the entire layout. So we'll change the width and height of our text box in the same fashion as our background. Here's how I set mine:



Using percentages can make the text box too big if the person's screen is bigger than the image. But because I stretched the image to fit the post, that won't be a problem. Using fixed values will work whenever needed, though.

After that I like to move the text box into a good position. For this I like to use the position attributes, but margin works as well (you'd have to add overflow:auto; to the background image's style if you wanted to use margin). I'll just go over how I would do it, but feel free to ask for help if you want to use margins. Here's my code:



First, you set the position to relative. That just makes it so that you're setting the position based on the container of the text box (which in our case is the background image). Then just set the positions of the top, left, right, or bottom of your image. I set the top and the left because these are the easiest to use when moving our box around. It's worth noting that fixed values can be used instead of just percentages.

Once we have the position of our text box all set up, I like to make a background color. I use rgba to make it somewhat transparent without affecting the text. Here's what the code looks like after that:



When using rgba you enter 4 numbers. The first three are the values of red, green, and blue respectively. The minimum is 0, and the max is 255. The fourth value determines how transparent it is, with 1 being not at all and 0 being completely transparent. Color values can be found easily enough with a little google searching.

Now once the background color has been set, you'll see that both the text box and text are white (assuming you used my code). That makes it difficult to read the post, which is annoying for everyone else. Fixing that is very easy, though:



The color attribute changes the color of the text inside of our div. That's all we need to do. I just used rgb which is exactly the same as rgba except that you can't change the transparency.

After that, add some padding between the border and our text. This is also very straightforward.



And finally, let's make it so that our text box scrolls when we type a lot. Just add overflow:auto; to the styling. That's literally all it takes.



And that's all I can think of for now. It's enough to get some pretty snazzy looking layouts, at the very least. Here's what mine looks like.
Vizzed Elite
The Reaper


Affected by 'Laziness Syndrome'

Registered: 01-09-11
Location: soxfan849
Last Post: 2713 days
Last Active: 2550 days

Post Rating: 2   Liked By: juuldude, Mistress,

06-18-12 03:48 PM
catfight09 is Offline
| ID: 603699 | 14 Words

catfight09
Level: 94


POSTS: 2252/2328
POST EXP: 74403
LVL EXP: 8061022
CP: 395.7
VIZ: 44950

Likes: 0  Dislikes: 0
Test, Test Does this look good? I think it worked well for me. 
Test, Test Does this look good? I think it worked well for me. 
Trusted Member
Final Fantasy XIII player


Affected by 'Laziness Syndrome'

Registered: 03-14-10
Last Post: 3238 days
Last Active: 1940 days

06-18-12 03:54 PM
soxfan849 is Offline
| ID: 603705 | 98 Words

soxfan849
Level: 76


POSTS: 735/1490
POST EXP: 106261
LVL EXP: 4005058
CP: 5193.6
VIZ: 222680

Likes: 0  Dislikes: 0
catfight09 :

I'd play around with the colors and get rid of the border I think, but that's just personal taste. As for parts of your code that need tweaking, you forgot the colon on your height attribute so it's not setting the height of your text box. You also misspelled the word position, so your text box is still just in the top left corner. And try to play around with the position values to get it in a nice spot. I chose the values for mine because I thought that was the best place to stick it.
catfight09 :

I'd play around with the colors and get rid of the border I think, but that's just personal taste. As for parts of your code that need tweaking, you forgot the colon on your height attribute so it's not setting the height of your text box. You also misspelled the word position, so your text box is still just in the top left corner. And try to play around with the position values to get it in a nice spot. I chose the values for mine because I thought that was the best place to stick it.
Vizzed Elite
The Reaper


Affected by 'Laziness Syndrome'

Registered: 01-09-11
Location: soxfan849
Last Post: 2713 days
Last Active: 2550 days

06-18-12 04:04 PM
catfight09 is Offline
| ID: 603714 | 19 Words

catfight09
Level: 94


POSTS: 2253/2328
POST EXP: 74403
LVL EXP: 8061022
CP: 395.7
VIZ: 44950

Likes: 0  Dislikes: 0
soxfan849 : Did I make it right? I sorta doubt it because I feel as though something is still off. 
soxfan849 : Did I make it right? I sorta doubt it because I feel as though something is still off. 
Trusted Member
Final Fantasy XIII player


Affected by 'Laziness Syndrome'

Registered: 03-14-10
Last Post: 3238 days
Last Active: 1940 days

06-18-12 04:07 PM
DarkosNinjax is Offline
| ID: 603716 | 9 Words

DarkosNinjax
Level: 8


POSTS: 5/10
POST EXP: 30
LVL EXP: 2087
CP: 28.0
VIZ: 3945

Likes: 0  Dislikes: 0
i guess this could help meh in da future
i guess this could help meh in da future
Member
slayter


Affected by 'Laziness Syndrome'

Registered: 05-16-12
Location: Carthage North Carolina
Last Post: 4323 days
Last Active: 4006 days

06-18-12 10:15 PM
soxfan849 is Offline
| ID: 603939 | 25 Words

soxfan849
Level: 76


POSTS: 736/1490
POST EXP: 106261
LVL EXP: 4005058
CP: 5193.6
VIZ: 222680

Likes: 0  Dislikes: 0
catfight09 :

You forgot the colon between the word height and the value 50%. Other than that it looks like everything in your code is right.
catfight09 :

You forgot the colon between the word height and the value 50%. Other than that it looks like everything in your code is right.
Vizzed Elite
The Reaper


Affected by 'Laziness Syndrome'

Registered: 01-09-11
Location: soxfan849
Last Post: 2713 days
Last Active: 2550 days

06-19-12 03:20 PM
catfight09 is Offline
| ID: 604324 | 36 Words

catfight09
Level: 94


POSTS: 2254/2328
POST EXP: 74403
LVL EXP: 8061022
CP: 395.7
VIZ: 44950

Likes: 0  Dislikes: 0
Alright, this looks about right. One more noobish question for ya:
soxfan849 : How to.... ergh..... put something as a signature. I tried but it wouldn't work. Does it perhaps need to go inside the 2nd
Alright, this looks about right. One more noobish question for ya:
soxfan849 : How to.... ergh..... put something as a signature. I tried but it wouldn't work. Does it perhaps need to go inside the 2nd
Trusted Member
Final Fantasy XIII player


Affected by 'Laziness Syndrome'

Registered: 03-14-10
Last Post: 3238 days
Last Active: 1940 days

06-19-12 04:02 PM
soxfan849 is Offline
| ID: 604354 | 46 Words

soxfan849
Level: 76


POSTS: 737/1490
POST EXP: 106261
LVL EXP: 4005058
CP: 5193.6
VIZ: 222680

Likes: 0  Dislikes: 0
catfight09 :

You still haven't fixed the height of the text box. But for a signature you just type whatever you want to show up before the first
.

So if my signature was "Made by soxfan849" then my signature would look like this:

Made by soxfan849
catfight09 :

You still haven't fixed the height of the text box. But for a signature you just type whatever you want to show up before the first
.

So if my signature was "Made by soxfan849" then my signature would look like this:

Made by soxfan849
Vizzed Elite
The Reaper


Affected by 'Laziness Syndrome'

Registered: 01-09-11
Location: soxfan849
Last Post: 2713 days
Last Active: 2550 days

06-19-12 04:30 PM
catfight09 is Offline
| ID: 604375 | 32 Words

catfight09
Level: 94


POSTS: 2256/2328
POST EXP: 74403
LVL EXP: 8061022
CP: 395.7
VIZ: 44950

Likes: 0  Dislikes: 0
soxfan849 :
Sorry about that. See, I fixed it, but because the site was running so slow on my mom's laptop, I guess I forgot to save it. This should be good though.
soxfan849 :
Sorry about that. See, I fixed it, but because the site was running so slow on my mom's laptop, I guess I forgot to save it. This should be good though.
Trusted Member
Final Fantasy XIII player


Affected by 'Laziness Syndrome'

Registered: 03-14-10
Last Post: 3238 days
Last Active: 1940 days

Links

Page Comments


This page has no comments

Adblocker detected!

Vizzed.com is very expensive to keep alive! The Ads pay for the servers.

Vizzed has 3 TB worth of games and 1 TB worth of music.  This site is free to use but the ads barely pay for the monthly server fees.  If too many more people use ad block, the site cannot survive.

We prioritize the community over the site profits.  This is why we avoid using annoying (but high paying) ads like most other sites which include popups, obnoxious sounds and animations, malware, and other forms of intrusiveness.  We'll do our part to never resort to these types of ads, please do your part by helping support this site by adding Vizzed.com to your ad blocking whitelist.

×