HOW THE HECK?!
5 posts • Page 1 of 1 •
HOW THE HECK?!
how do i use CSS code, I am used to bbc code and HTML. But not CSS...its soo confuseing, hlp me plz. v.v. basically, i just wanna make my own custom background. Like i am so confused on how to use it.
-

6xXxEmoLuvxXx9 - Fresh Meat
- Posts: 29
- Joined: 07 Sep 2008
- Age: 17
- Gender: Female
- Location: My own World
Here's a part of the CSS guide I was writing...
For people like me who barely understand CSS.
Alright. You want to edit your profile and make it look cool like everyone else's. But how do you do this? I'll explain how.
Here is the process I usually go through in order to make a layout:
1. Pick a theme(Death Note; Mudkips etc)
2. Pick background images
3. Pick a colour scheme
4. Edit things until they suit my liking
My layouts are results of trial an error. I try something, I don't like it I play around with it until it looks better and I do like it. I generally try to keep a colour scheme, like red and black or blue and white.
Okay now you know the basic steps. But what are the codes we need?
I basically take already made layouts and mess with the borders, colors and background images.
(I'll use my current layout as an example)
- Code:
body {
text-align: center;
font-family: arial, helvetica, sans-serif;
font-size: 12px;
background-color: #000000;
background: url(http://i204.photobucket.com/albums/bb61/Tom_Uchiha_Productions/CSS%20stuff/yagami-light-wallpaper-1024-768.jpg) repeat fixed center;
}
In that code I changed my background image and the font type, alignment and the background color.
The "text-align: center;" means that the text will be in the center; as apposed to the left or right.
The "font-family: arial, helvetica, sans-serif;" means that the font will be one of those listed fonts. I choose not to change that in my layouts, as sometimes changing the fonts can make them harder to read.
The "font-size:12px;" means that the font will be size 12. Pretty self explanatory, change it to make your text larger or smaller.
The "background: url..." is basically your background image. You need a direct link to your image that ends in .jpg, .gif, .png, etc in order for it to work."Repeat fixed center" means that my background will repeat if it's not big enough to fill the page and that it WON'T scroll along with the rest of the page. I quite like fixed backgrounds, but you can get rid of that if you want.
Just because I can't change everything doesn't mean I can't change anything
Quotes of Tom's awesomeness:
Quotes of Tom's awesomeness:
Spoiler:
-

Tom - I'm barely holdin' on to you
- Posts: 3134
- Joined: 11 Feb 2008
- Age: 15
- Location: KENYAAAAAAAAAAA!
thank u... ^.^
Is there any way that I can like get rid ofthe white? like make it invisible, so the font is over my background pic?
Is there any way that I can like get rid ofthe white? like make it invisible, so the font is over my background pic?
-

6xXxEmoLuvxXx9 - Fresh Meat
- Posts: 29
- Joined: 07 Sep 2008
- Age: 17
- Gender: Female
- Location: My own World
6xXxEmoLuvxXx9 wrote: Is there any way that I can like get rid ofthe white? like make it invisible, so the font is over my background pic?
Yes.
Add this to your profile CSS:
- Code:
#wrap {
width: 100%;
margin: 0 auto;
text-align: left;
background: url(http://i204.photobucket.com/albums/bb61/Tom_Uchiha_Productions/CSS%20stuff/yagami-light-wallpaper-1024-768.jpg) repeat fixed left top;
}
Just replace the URL with the URL for you background image.(The same on you used in the other code)
Just because I can't change everything doesn't mean I can't change anything
Quotes of Tom's awesomeness:
Quotes of Tom's awesomeness:
Spoiler:
-

Tom - I'm barely holdin' on to you
- Posts: 3134
- Joined: 11 Feb 2008
- Age: 15
- Location: KENYAAAAAAAAAAA!
-

6xXxEmoLuvxXx9 - Fresh Meat
- Posts: 29
- Joined: 07 Sep 2008
- Age: 17
- Gender: Female
- Location: My own World
5 • Page 1 of 1 •
Profile Layout Help and Discussion