Profile Styling Guide
Official site resource (Tutorials)

If you are a dark mode user,
please select "View custom theme"
--don't worry the CSS on this page has dark and light modes too!

~*~*~ This is somewhat a work in progress, everything is mostly here though! If you have any questions, please direct them to Ookami Kenran! ~*~*~

Table of Contents

🔗 Preface
🔗 Tools
🔗 Changing the Basics
🔗 Changing the Header
🔗 Meet the Elements
🔗 Extra Help
🔗 Legacy Transition Guide

Table of Contents

🔗 Preface
🔗 Tools
🔗 Beginner
🔗 Advanced
🔗 Expert
🔗 Extra Help
🔗 Legacy Transition Guide

Preface


The option to change your profile theme is on your profile, next to the "Edit page" option, called "Edit CSS".

You may need to refresh the page after you save to see the changes you made (most browsers cache style sheets).


On this page you can learn how to style your own profile using Cascading Style Sheets. This is a coding language that changes the presentation of a web page. If you're not familiar with this I suggest just copy-pasting the lines with the things you want to change into your box.

It is advised that you only change one or two things at a time so it is easier to find your mistakes. If you decide to play around with it more, note that the ordering is important; things more to the bottom take precedence over things written at the top. Keeping that in mind, I also recommend that you order your code in the way that it appears on the page to help you find things when coding.

If you are looking for further assistance, check out our help section.




Tools


Note that
color: ;
always refers to text.




★☆☆☆☆

CSS Comments

Comments are parts of the code that the browser will ignore, so you can make note for yourself and others.
/* */

I recommend you use them liberally!
/* An example of a CSS comment. */





★☆☆☆☆

Spacing

Whitespace is ignored when the browser reads the code, so you have some freedom when it comes to writing your code so that it is easier to read.
Example:
h1,
h2,
h3,
h4 {
color: #FFFFFF;
}

is the same as:
h1, h2, h3, h4 {color:#FFFFFF;}





★☆☆☆☆

Editing the Logo

You can easily change the color of the logo, but if you want to make your own image, make sure that the image still has "Chibi Pixel Doll Dress-Up" in it.

★☆☆☆☆

Changing the Color of Our Special Graphics

[Coming Soon!]

★☆☆☆☆

Color Values

[Coming Soon!]




★★★☆☆

The Background Property


Size


Position


Attachment


Repeat





★☆☆☆☆

Hide Things

You can easily hide elements with one line of code:
{ display: none; }

This is not really recommended, except for
elements noted in violet
.




★★☆☆☆

Alpha % to # Table

This is handy, because you can still have transparency and use hex values instead of rgb().
Ex:
#80808080
would be #808080 (gray) at 50%.
Here are some helpful values:
Max/Min
100% — FF
0% — 00
Thirds
33% — 54
67% — AB
Quarters
25% — 40
50% — 80
75% — BF

Tens
90% — E6
80% — CC
70% — B3
60% — 99
50% — 80
40% — 66
30% — 4D
20% — 33
10% — 1A





★☆☆☆☆

Font Weight

To make bold text normal:
{ font-weight: normal; }

To make normal text bold:
{ font-weight: bold; }

Learn more: .




★★★☆☆

Text Decoration










★★★★★

Gradients

[Coming Soon!]




★★★★★

Responsiveness

This refers to how a page responds to being on different devices.
[Coming Soon!]



★☆☆☆☆

Changing the Basics


/* === Changing the color scheme === */
/* Main background color, image, and text color */
body, .screenshot-bg {
background: #FF4F91 url(
http://example.png
);
color: #680025;
}

/* h1 is the page title, and h4 is the footer text, h2 & h3 are used on other pages */
h1, h2, h3, h4 {
color: #FFFFFF;
}
/* OR */
h1 {
color: #FFFFFF;
}
h4 {
color: #000000;
}

/* Link color */
a:link, a:visited, a:active {
color: #A60033;
}
/* Link color when you mouse over it */
a:hover {
color: #FFFFFF;
}




★★☆☆☆

Changing the Header


/* ======= Changing the Header ======= */
/* Changing the color of the header */
#header {
background: #2284C8;
}

/* Avatar/Login area */
#top_right {
background: url(spotlight.png);
}

/* Changing the color (or image) of the logo */
#header ul.menu {
background-image:
url(../../../img.php?logo=9420A2);
}

/* Main menu item colors (it may be nice to make the background match the page background) */
#header ul.menu a {
background: #FF4F91;
color: #08321D;
}
/* Changes in menu item colors when you move over it with the cursor */
#header ul.menu a:hover {
background: #000000;
color: #FFFFFF;
}
/* The selected tab (only needed if you have oekaki or you are an artist) */
#header ul.menu li.selected a {
background: #FF4F91;
color: #08321D;
}
/* When you hover over it */
#header ul.menu li.selected a:hover {
background: #000000;
color: #FFFFFF;
}





Meet the Elements


★☆☆☆☆

Comments Section


/* Comment area */
.comments {
background: #FF91B8;
}

/* Changing the speech bubble */
.speechbox span {
background: #FFDEE9;
border-color: #E33D75;
}
.bubble_tail {
background-image:
url(../../../img.php?bubble=FFDEE9&border=E33D75);
}

/* Giving all the avatars in the comment section a custom background */
td.avibox {
background: url(spotlight.png);
}

*The
-color
is needed for the border.




★☆☆☆☆

Secondary Menu

idk what to use for the temporary colors


/* Secondary Menu */

#content ul.menu a {
background: #FF4F91;
color: #08321D;
}
/* Changes in menu item colors when you move over it with the cursor */

#content ul.menu a:hover {
background: #000000;
color: #FFFFFF;
}
/* You can challenge yourself by looking at the main nav and guess how to do the selected version of the secondary nav, which you may not see unless your theme is veiwed on other pages. By default it just adds an underline. */





★★☆☆☆

Avatar/Login Area Continued

idk what to use for the temporary colors, these are default :P


/* Links */
#top_right a,
#top_right a:link,
#top_right a:visited,
#top_right a:active {
color: #DAE5F2;
}
/* Links when you hover over them */
#top_right a:hover {
color: #FFFFFF;
}

/* Buttons; I recommend making them look like the main nav */
#top_right input[type="submit"],
#top_right input[type="button"] {
background-color: #DAE5F2;
color: #274052;
}
/* Buttons when you hover */
#top_right input[type="button"]:hover {
background-color: #DAE5F2;
color: #274052;
}





★★★★☆

Other


/* The box containing everything but the header and footer */
#content {}

/* Custom boxes */
/* (created by typing
[block=exampleName]text[/block]
in your profile text)
Check out the Custom Blocks How-To Guide if you're lost. */
#exampleName {}

/* Your oekaki gallery (will show when you've drawn on the oekaki board) */
#oekaki {}
/* The border around each oekaki */
.framed {
border: ;
}

/* The box containing your profile avatar (right above your equipped list) */
#profile_avi {}

/* The list worn item icons */
#equipped {}

/* Cursor */
/* The image used must be a .cur file (using .ani will not appear on all browsers). */
body { cursor: url(image.cur), auto; }





★★☆☆☆

Artists


/* Changing your artist trunk colors/image (follow the template if you want to change the whole image) *
a.trunk {
background-image:
url(../../../img.php?trunk=96AFC2&straps=FFFFFF);
}





★★★☆☆

Event


These will show when you are wearing one.
Displayed in chronological order.
Default height is 50px.

/* Your Halloween pumpkin */
#pumpkin {}

/* Your Saint Nicholas shoes */
#shoes {}





Extra Help


If you need help, remember that google is your friend!

If you are interested in understanding better, is a great site to use to help teach yourself! I still use it for a !

If all else fails, you can talk to one of the CSS designers.

Or you can look for an active CSS shop to find someone to make a theme for you! 😊

Kenran's CSS Help Desk




Legacy Transition Guide


The legacy header had a gradient image over it, along with the #avatar, which is no longer utilized.
#header still works, but #avatar can be changed to #top_right if you want an image behind the login/user area.
(Click the link if you want to know more about the login/user area.)

If you miss the gradient, add
background-image: linear-gradient(transparent, #ffffff65);
after your background in
#header
.

You can add a bottom border like the old one with
border-bottom: 1px solid #274052;

(Click here for more on borders)

For the menu items, delete everything before the
{
and replace it with this:
#header ul.menu a
;
...and for when you move over it with the cursor:
#header ul.menu a:hover


If you are a site artist and those who have make oekaki, it would make sense to add the selected code:
/* The selected tab (only needed if you have oekaki or you are an artist) */
#header ul.menu li.selected a { }
/* When you hover over it */
#header ul.menu li.selected a:hover { }


Also, there is what I call a secondary menu now.

If you had a trunk, make sure it says
background-image:
and not just
background:
.

I recommend changing
table
to
.comments;
especially if something isn't working properly.
Before, this would edit your changing booth, but this its not currently possible.

For all the other little extras, they may not be on the new site, feel free to comment and ask.
Title:Profile Styling Guide
Last changed:March 9 by Ookami Kenran
Page views:356
Visible to:anyone
Can be edited by:authors only
<< Viewing 44 - 84 of 258 >|
June 8, 2009 9:41 ()
body {
background-color:#111111
background-image:url('http://img352.imageshack.us/img352/619/aimj1.jpg');
background-attachment:scroll;
background-position:top;
background-repeat:no-repeat;}

I tried putting that, but it didn't appear... ;___;
Edea Sorceress
June 8, 2009 10:33 ()
@Edea - You need a space between ) and ; after the url, if not it will be a broken url as it is now.
Rosamond
June 8, 2009 22:48 ()
Did you put it in the custom profile theme box? Otherwise the "'"s you put around the url could be a problem, try leaving them out. And to see the changes remember to refresh the page after you save.
Karin
June 11, 2009 4:26 ()
I tried, but it didn't work. X'<
I tried using only the "background-color", and it worked.
But when I added the others...
><

Anw, thanks Rosamond, thanks Karin~
x'D
Edea Sorceress
June 11, 2009 5:48 ()
I fixed it for you Edea. You were missing a ; to seperate the background color from the background image and there was too many spaces as well.
Rosamond
June 11, 2009 7:51 ()
Is 100px the limit of offline/online indicator images?
I used one w/100+ width so that's why they didn't work?
Wolf_Blossom
June 11, 2009 10:03 ()
You should put the same dimensions as the image you want to use. Otherwise you can't see it.
Karin
June 12, 2009 4:31 ()
It appeared~ It appeared~ X"3
Thanks Rosamond~ >< *shakes hand*
Edea Sorceress
June 12, 2009 5:20 ()
You're welcome.
Rosamond
June 15, 2009 22:55 ()
The Halloween profile has been pimped.
Karin
June 21, 2009 18:48 ()
i haven't understand... ;W;
for add a background immage i have to copy and paste
body { background: #FF4F91 url(background.png); color: #680025; }
and change the "background url" :3
-w-
actually i haven't understand your explanations ;__;
i added spaces, delete spaces, changed the immage in png as well.. but seem that i totally don't understand how to do ;__;
*and yes.. i'm already saved the "custom" oprion* ^^''
i would put this immage in background (as wolf-blossom does)
http://www.iaza.com/work/090622C/nebula24772113053-iaza.png
could you teach me how to do?
Jiuly
June 21, 2009 22:35 ()
You can change the color as well. I'm not sure why it's not working for you, it should work with that code. I'll take a look at it.
Rosamond
June 21, 2009 23:03 ()
thanks rosa ;*
Jiuly
June 21, 2009 23:09 ()
just to know.. for change the color of the write.. where i look to choose the right code? °w°?
Jiuly
June 22, 2009 0:44 ()
To change the color of the the text you would change this.. color: #680025 to the color you want.
Rosamond
June 22, 2009 13:37 ()
i understood that..what i haven't catch is... where i get the code of the colours? :3

there is a page online where i see all the colors with their codes?
i tried using the codes of the colours used in kofk... but it totally doesn't work ^^''
Jiuly
June 22, 2009 14:01 ()
Here, Jiuly:

http://www.december.com/html/spec/colorhex.html

I always use my drawing program to find them, though.
Karin
June 22, 2009 19:54 ()
Thanks karin!!! <3 <3 <3
Jiuly
June 22, 2009 19:57 ()
You could use what Karin put up or you could type on google "color wheel" and it will bring some up.
Rosamond
June 23, 2009 3:01 ()
or, just search for hex code :D
Captain grvl
June 23, 2009 15:07 ()
Karin already put a link to hex codes, the purpose of the color wheel is that she can specifically pick the color she wants to use.
Rosamond
June 27, 2009 18:01 ()
I did put up the right dimensions, but it still won't show up.
Hope you can help me with the offline/online indicators.
Wolf_Blossom
July 27, 2009 10:07 ()
Oh, I think they're alright now. Thanks, Karin.
Wolf_Blossom
October 7, 2009 3:56 ()
Halloween pimped my profile.
Rosamond
October 7, 2009 15:31 ()
Want. Airplane. Arms.
Chich
October 29, 2009 8:04 ()
Gosh CSS is the hardest coding I've ever tried to do. xDD
Um. I attempted to just get a white background, but now no matter what I put in the box, everything stays white. As in the background and words...Even if the box is empty and I put in new color codes it doesn't change! ;3; Idk what to do~
Soryko
October 29, 2009 8:12 ()
Never mind I think it's browser issues. ^^;
Well, code issues too, but my browser was bein' weird.
Soryko
November 1, 2009 13:51 ()
Ah, very nice guide with such easy-to-follow examples! C: <3
Excellent C: now I've made my own theme, it went really quick and smooth for me - and I've just tried out css once before in my life. Great guide! C: <3
blackflash
November 1, 2009 16:04 ()
OMG your profile looks so cute, just look at the banner! I'm glad the guide helped! ^^
Karin
November 1, 2009 18:16 ()
I agree, the banner is especially cute.
Rosamond
November 1, 2009 20:07 ()
Aw c: why thank you, Karin and Rosamond! ~<3

Hrm. The banner kind of looks like ... ... cheese c'x ... but it really doesn't matter now, I still think the profile turned out nicely. c:
If I have some free time, I'll probably keep working on it later. c:

One thing I was wondering about: would it be possible to embed or just add (like an image) music or video? Like a .mp3 or a .swf file..? c:< *thinks of the possibilities~* p;
Or maybe it wouldn't work, most files on the Internet are © ... o: Hrm, hrm ...
blackflash
November 1, 2009 20:55 ()
Embedded media works on some other boards I've seen, so it's probably possible to make something like that. Problem is I don't know much about Flash and I don't know if it's such a good idea. Not too long ago there was something in the media about Youtube wanting to make site owners pay for embedding copyrighted videos.
Karin
November 3, 2009 18:00 ()
Just as I though then p': well, that's life c: I'll probably come up with something else to do with my profile soon anyway. c:

There's one other thing that's been bugging me, of which you surely have heard already, Karin c: that this whole community is align=center in IE, but align=left in Firefox (and most likely other browsers too?). p: I'm already familiar with other sites having the same 'problem' without the owner even knowing of it - because he/she is only using IE, and IE obviously has a thing for auto-centering every page it comes across (unless you specifically tell it not to do so) ... c':
All that should be needed is a little align=center, isn't it? (says me, not even looking at you coding px) Nah, but really c: it shouldn't take much typing fixing it I think.
blackflash
November 3, 2009 20:02 ()
Lol, yes I use IE, but I tried to test with Firefox as well... It could be that I missed a page or 2, please don't hesitate to point them out for me!
Karin
November 4, 2009 23:08 ()
Page or two? All the pages align left for me. (Firefox)
Chich
November 5, 2009 22:21 ()
Since when? And with what version? When I use Firefox 3.0.11 all the pages and comment boxes are nice and centered.
Karin
November 5, 2009 22:28 ()
The latest version of Firefox is 3.5.4
Chich
November 13, 2009 2:48 ()
All pages align center in Firefox (for me anyway~)

And in my PSP they're also centered.
Minami
November 13, 2009 22:05 ()
You must have an older version, then. . o. -still left aligned-
Chich
November 22, 2009 16:49 ()
Of course, I didn't do anything to fix it yet. I'm on somebody else's computer now and everything is indeed left aligned. It would help if I knew why.
Karin
November 22, 2009 17:09 ()
I think I might know what's wrong. I think the site layout somehow thinks this version of Firefox is the same as the Playstation Portable browser. I made some special adjustments especially for the PSP...
Karin