Sponsors

Highlighted

Fly... by °Phill  2 months 1 week  ago

Fly... by °Phill 2 months 1 week ago

^nat
This wallpaper captures the urban essence that proliferated the art of Ghost in the Shell in every incarnation of the series. Phill does an amazing job of capturing a moment of surrealism.

While there are a few, stray building angles and shadows, you find that your eye forgives the minor details and instead focuses on the overall scene that is larger than life, with lights trailing off into infinity.

ShoutBox

~Youngster 2 minutes ago
User posted image

$stromeer 22 minutes ago
Marcella, if you're older that's just the reaction you can expect from your parents. They think it's okay for a xx-year-old to do such things but a older person should know better. That doesn't mean they love you less ;)

~mldgrater 45 minutes ago
MarceLLa if your older then thats just the way it is.if u've done nothing wrong to ake them hate you then y would they?if your older then they know you can handle the situation

~MarceLLa 59 minutes ago
It was very clear from what I said earlier. That is concrete proof that they love her more than they wil ever love me. Hopefully they won't coz thinking of that creeps me out.

~Roxas 1 hour 2 minutes ago
I dunno. Try askin them!

~MarceLLa 1 hour 11 minutes ago
No they just love my sis better or was it that they hate me and love her more?

~azrai 1 hour 11 minutes ago
Wheeee~ The peaceful SB >XD ROFL >XD I miss the SB! >XD SB in Shooting Box! >XD *starts to shoot* >XD wheee~ *and disappears >XD*

~Roxas 1 hour 13 minutes ago
@Marvella: Weird parents you got there

~MarceLLa 1 hour 19 minutes ago
I threw a water bottle at my sis coz she threw my mp3. Before that she hit my arm yet my parents said nothing. And when she threw the mp3 they said nothing. I cried (fake but convincing) when she threw it. But when I threw the bottle they exploded.

~Roxas 1 hour 20 minutes ago
Oh *hugs angel* ^^ Howve yu been?

xenohawk's Comments

PS3 specs

3 years 4 months ago

"The controllers are really odd looking. The current controller for PS/PS2 are the best one for console imo. I prefer functionality and comfort over design anytime for controllers. The Bluetooth is a nice add-on for the controllers (about time! I hate it when people keeps on tripping the controller wire).

LOL the PS3 logo reminds me of Spider Man movie logo XD"

View

RSS Feed

3 years 4 months ago

"
uhm, noob question what is an RSS feed and how does it affect my life in a forum ^_^;


Hi there... what is RSS?
http://en.wikipedia.org/wiki/RSS_%28file_format%29

And how do I use this RSS?
You can use news aggregator (feed readers) to read it. Firefox have a built-in feed reader in it.

For more details on news aggregator see this:
http://en.wikipedia.org/wiki/News_aggregators

And a list of standalone news aggregator software:
http://en.wikipedia.org/wiki/List_of_news_aggregators

Enjoy!"

View

Policy Changes

3 years 5 months ago

"
Oooh...admin status. Congratz!

I can't wait to see what spiffy new layout Xeno will surprise us with this time.


Ho ho :neko: thanks guys. Will try my best in the layout and design."

View

Punk-O-Matic

3 years 5 months ago

"Umm... the "data is no good" LOL, you might miss something. You can double check next time by copy and paste it again. I did with mine a few times."
View

Punk-O-Matic

3 years 5 months ago

"LOL, I just stumble across these and it is really fun to play with. Basically its a flash game where you compose your songs using its predefine beats. I host this on AA for now. Get the Punk-O-Matic HERE (I recommend right-click and save it and play in your pc).

I've come out with a really short simple song. [ ------6-881--7769------------------------------------------------------------------------
8---8---8---c--------------------------------------------------------------------7-7-7-1---7-7-8
-a-------------------------------------------------------------------- ]. Just cut and paste this in the Load function.

What can you come out with? Oh and remember to break the save data to avoid stretching the forum layout."

View

The Genesis of Arma

3 years 5 months ago

"Visit http://www.sabzil.net/ for more information. Anyone heard about this game before? The Gallery for it is cool, I might wall it. But its in 3D, so not that easy."
View

Userpage customization tutorials

3 years 5 months ago

"Here are some more FAQ's I think most of you will ask:

How do you create those cool semi-transparent boxes?
Easy, you can do this by inserting these attributes in your element:

filter:alpha(opacity=90); /* IE opacity */
-moz-opacity:0.90; /* mozilla opacity */
opacity: 0.90; /* other browser opacity if available */

The values determine the transparencies. The lower the value the higher the transparencies.


How do you do those rounded box?
These rounded box can only be seen in firefox browser as it is their proprietary CSS properties. All you have to do is add this attribute in any element:

-moz-border-radius: 8px;

The value determine the how round the corner will be. You could also defined each corner with these:

-moz-border-radius-bottomleft,
-moz-border-radius-bottomright,
-moz-border-radius-topleft,
-moz-border-radius-topright"

View

Userpage customization tutorials

3 years 5 months ago

" Note: The FAQ maybe outdated with the old CSS answer. I will soon do a complete CSS tutorial. The basic and the external links are still good only some of the FAQ.

Alright seeing that many users are still new and confused about CSS (Creating Stylish Siteâ?¦ LOL ehemâ?¦ Cascading Style Sheet) in creating their userpage, Iâ??ve decided to create a fast FAQ session to help you all. I know that most of the tutorials out on the internet are very lengthy because it is their purposed to cover everything in CSS. But for styling out userpage, we only need to know part of it.


So on to the basics:
CSS is a set of rules which tells the browsers how your page presentation will be. So first of all, the format:

body {
background-color: red;
}

In CSS, we style the elements in HTML. HTML tags like , and are what we called elements. The rules inside the bracket is what we called attributes that tells the browser how to style the element. Now for the example CSS above, the result would be a RED page since the element in HTML define the entire page.

So the basic CSS structure would be:

elements {
css-attributes-name: values;
}

For the above, in HTML you would be styling something like


You can style by ID's and Classes to. For ID it would look like this:

#id-name {
css-attributes-name: values;
}

For the above, in HTML you would be styling something like


And for Classes it would look like this:

.class-name {
css-attributes-name: values;
}

For the above, in HTML you would be styling something like

Sometimes you might want to have several elements to have the same attributes. So what you basically do is create few set of css rules with the same attributes. Yes, that is correct but there is a simpler way, you can declare more than one element in a rule. For example:

body,td,th {
font-family: verdana, arial, tahoma;
font-size:12px;
color: #4B4F41;
}

There is one really important rule you HAVE to remember, CSS rules supports inheritance which can be good or bad depending on how well you used it. For example, a body element has higher priority than any normal elements like table, p, div and so on. So attributes that applies to body elements will be inherited by elements below it. Letâ??s take the above example, we can shorten it to:

body {
font-family: verdana, arial, tahoma;
font-size:12px;
color: #4B4F41;
}

Since td and th element are usually under body element, the attributes in body elements applies as well to td and th element. Of course you can override the attributes for that element. This is where is become tricky and you have to experiment a lot.

Alright enough with the basics crap. I want to style my userpage now! Woh ok, but before that here is some important reference for attributes:

CSS Background â?? properties that define the background effects of an element.

CSS Text â?? properties that define the appearance of text.

CSS Font â?? properties that define the font in text.

CSS Border â?? properties that define the borders around an element.

CSS Margin â?? properties that define the space around elements.

CSS Padding â?? properties that define the space between the element border and the element content.

The Dimension â?? Allow you to control the height and width of an element. It also allows you to increase the space between two lines.

CSS Positioning â?? properties that define the position of an element.


Ok, now to the questions (if you have any post here, Iâ??ll try to answer it). All the answers here are based on the default AP CSS.

How do I change the background image?
Ok, search for this rule:

body {
background-color: #f2f3ee;
margin-top: 150px;
background-image: url(http://www.animepaper.net/images/natheader.jpg);
background-repeat: no-repeat;
}

Now to change the background image, you simply have to change the background-image attribute. Change the url inside the url( â?¦ ) to your image.
For more customization look in CSS Background


How do I change the fonts and its colors?
Look for:

body,td,th {
font-family: verdana, arial, tahoma;
font-size:12px;
color: #4B4F41;
}

Then you can change the font-family to your fonts, the size of the font in font-size and its color. Please refer to CSS Font.


How do I change the link colors and style?
Now these are special, usually called Pseudo-classes. Look for:

a:link {
color: #6E1622;
text-decoration: underline;
}
a:visited {
text-decoration: underline;
color: #6E1622;
}
a:hover {
text-decoration: none;
color: #6E1622;
}
a:active {
text-decoration: underline;
color: #6E1622;
}

Each of these rules defines the states of a link and how will it behave.
a:link â?? unvisited link
a:visited â?? visited link
a:hover â?? mouse over link
a:active â?? selected link

Please refer to CSS Text and CSS Font on how to style this. If possible, please keep the order of these Pseudo-classes in this order (link, visited, hover, active) or the easy to remember (LoVe HAte) word.

Hey, that looks a bit redundant I remember that you said you can combine elements?
Yes! Now that is a really good question, you can do so like this:

a:link,
a:visited,
a:active {
text-decoration: underline;
color: #6E1622;
}

a:hover {
text-decoration: none;
color: #6E1622;
}


How do I style the header menu?
Look for:
.headmenu {
background-color: #D3D4CF;
color: #4B4F41;
border: 1px solid #AFB0AB;
padding: 3px;
margin: 2px;
font-size: 10px;
}

Ok, I think by now youâ??ll be familiar with some of the attributes so I just explained those that are new.

border: 1px solid #AFB0AB;

The above is actually a short hand to code border style. Better than declaring for left, top, bottom and right border. Please refer to CSS Border


padding: 3px;
margin: 2px;

The above are basically spacing on elements. Itâ??s the same thing as your Word document when you set your page margin. Refer to CSS Margin and CSS Padding. Take note, that this might look simple but this 2 contributes to most of the CSS problem out there. This is because each browser has its own default margin and padding to elements, so you would have to play around with it. You could however set all elements margin and padding to 0px by using the * selector. Example:

* {
padding: 0;
margin: 0;
}

This will set all elements padding and margin to 0, but please be careful as doing this might collapse the entire layout.


How do I style the rest of the page?
The rest are just simple changing of border colors and background color. Look for:

.mainbody {
background-color: #ECEDE8;
border: 1px solid #E1E2DC;
}
.darkboxoutline {
border: 1px solid #AFB0AB;
}
.lightboxoutline {
border: 1px solid #E1E2DC;
}
.box1 {
background-color: #D3D4CF;
}
.box2 {
background-color: #ECEDE8;
}

The mainbody is the main table that surrounds all the content.
Both the darkboxoutline and lightboxoutline are the borders surrounding content.
box1 and box2 are the inside tables inside the mainbody.

Try to play around with it.

------------------------------------------------------
Further information:

Another recommended beginners CSS tutorial â?? http://www.webmasterstop.com/112.html

Here's a huge list of useful links to get someone started at CSS.
http://www.dezwozhere.com/links.html

What can CSS do? See the pro's at work in CSS Zen Garden

Need fast and nice color scheme? http://www.colorschemer.com/schemes/


Some really useful tools for firefox in web design.
Web Developer Tool - A MUST for web designers, you can use this to help you in CSS designing.
http://chrispederick.com/work/firefox/webdeveloper/

Aardvark - Another useful tool in showing how the page was construct without looking into page source.
http://www.karmatics.com/aardvark/


------------------------------------------------------
Further advance tips:

A quick tips on CSS if you're using Firefox browser and have Web Developers Tools installed (refer to the link above).

This tips is useful for experimenting with CSS and avoid saving the CSS everytime to see the result. Extremely useful in a situation like this where you have to submit the CSS to see the result. Working with CSS for quite sometime, it is easier said than done. Usually you'll need to tinker here and there to get the result you wanted.

So now, on to the tips. Now if you have Web Developer Tool installed click on the CSS dropdown list and click on the "Edit CSS".

This will open a sidebar containing the CSS used by the current page. Now the cool thing is, if you edit the CSS on the sidebar the current page will change immediately. So you can play with the CSS without submitting the CSS everytime.

Once you have done playing around you can copy the edited CSS and submit it. Alright.. go play around haha.

"

View

Suggestions

3 years 5 months ago

"Hey guys, is it better if the wallpaper comments are sorted in descending order? So that it is easy to read the latest comments rather than scrolling downwards or clicking to next page. "
View

Another new feature!

3 years 5 months ago

"
I am trying to embed java customized mouse pointers but the .png is not supported T_T


Is javascript supported in userpage? I've tried to put it in the custom area but it was strip off. Probably to avoid bad script and abuse."

View

Need thoughts on my Userpage

3 years 5 months ago

"I think it would look better with a constant theme on the borders too as said by supersamurai. Sorry, I've tried to play around with your theme by changing some borders colors and background to match your background and user bio.

--------------------------------------------------------
/* top menu bar table */
.headmenu {
background-color: #000000;
color: #5F9EA0;
border: 1px solid #ABC2EB;
padding: 3px;
margin: 2px;
font-size: 10px;
}

/* In the beta version this is what goes around most boxes */

.mainbody {
background-color: #040655;
border: 1px solid #ABC2EB;
}
.darkboxoutline {
border: 1px solid #ABC2EB;
}
.lightboxoutline {
border: 1px solid #ABC2EB;
}
.box1 {
background-color: #000000;
}
.box2 {
background-color: #392347;
}

--------------------------------------------------------"

View

Another new feature!

3 years 5 months ago

"Check this out guys,
http://books.mozdev.org/chapters/ch04.html#77028.

It link to a list of mozilla proprietary CSS properties. Although this only works in browser like Firefox it is still nice. One that is nice are -moz-opacity and -moz-border-radius.

I am using -moz-border-radius feature myself in my userpage. Check it out, you can view my CSS if you wanted to. I've properly structure it so it can be easily located."

View

Another new feature!

3 years 5 months ago

"A quick tips on CSS if you're using Firefox browser and have Web Developers Tools installed (refer my previous post on top).

This tips is useful for experimenting with CSS and avoid saving the CSS everytime to see the result. Extremely useful in a situation like this where you have to submit the CSS to see the result. Working with CSS for quite sometime, it is easier said than done. Usually you'll need to tinker here and there to get the result you wanted.

So now, on to the tips. Now if you have Web Developer Tool installed click on the CSS dropdown list and click on the "Edit CSS".

This will open a sidebar containing the CSS used by the current page. Now the cool thing is, if you edit the CSS on the sidebar the current page will change immediately. So you can play with the CSS without submitting the CSS everytime.

Once you have done playing around you can copy the edited CSS and submit it. Alright.. go play around haha.


Btw. Bantam, can we have some extra divs to add extra imagery? A couple of this at the bottom of the page will do:

<div id="extraDiv1"><span></span></div>
<div id="extraDiv2"><span></span></div>
...."

View

Another new feature!

3 years 5 months ago

"Here's a huge list of useful links to get someone started at CSS.
http://www.dezwozhere.com/links.html

What can CSS do? See the pro's at work in CSS Zen Garden

Need fast and nice color scheme? http://www.colorschemer.com/schemes/


Some really useful tools for firefox in web design.
Web Developer Tool - A MUST for web designers, you can use this to help you in CSS designing.
http://chrispederick.com/work/firefox/webdeveloper/

Aardvark - Another useful tool in showing how the page was construct without looking into page source.
http://www.karmatics.com/aardvark/


EDIT: Whoops, forgot the most important reference haha.
http://www.stylegala.com/features/css-reference/"

View

Vectoring in Illustrator

3 years 5 months ago

"LOL here is something new.
http://turbulence.org/Works/imprimatur/

Its a online vector tool, but not really practical to use since it cannot save (at least on mine). Works almost like Inkscape."

View

Vectoring in Illustrator

3 years 5 months ago

"Anyone tried the free open source Scalable Vector Graphics Editor Inkscape before? I didn't use Illustrator a lot but I do prefer the pen tool in Inkscape and Photoshop than Illustrator."
View