- 37,467
- Posts
- 17
- Years
- they/them
- Seen Oct 15, 2024
Get creative with your post flair and parade it around here :D <3
You may submit so called "css-code" that other members can use to style their flairs with, since it's difficult to start from scratch :)
It's helpful to put your css within a [code] yada yada [/code] tag here, as then it will be shown as text in your post and be possible for people to directly copy and use and tweak as they wish!
To start off, below here is a template from Nah. Just copy the link address of an image on the web and insert it where it says to put the img URL. Change hex color codes and numbers around in the post flair editor to see what happens!
Some CSS hints:
You can almost put any kind of code in any part of the flair. Making a background-color in the "Main block" will affect different parts of the flair compared to if you put it in "Statistics" etc.
Google searches will usually put you on this page https://www.w3schools.com/css/ which I find helps you well.
You may submit so called "css-code" that other members can use to style their flairs with, since it's difficult to start from scratch :)
It's helpful to put your css within a [code] yada yada [/code] tag here, as then it will be shown as text in your post and be possible for people to directly copy and use and tweak as they wish!
To start off, below here is a template from Nah. Just copy the link address of an image on the web and insert it where it says to put the img URL. Change hex color codes and numbers around in the post flair editor to see what happens!
Spoiler:
Code:
Main block
background-color:#fff; background-image: url(insert image URL here), url(insert image URL here); background-position: top, center; background-repeat: no-repeat, repeat; background-repeat: no-repeat, repeat;border: 15px solid rgba(152, 152, 152, 0.6);
Avatar container
border: solid #885f3f 1px; box-shadow: 0px 0px 1em #785539;
Your name
font-family:Berkshire Swash; font-size:26pt; font-style: oblique; letter-spacing:1px; text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff, 0 0 5px #c93d54; color:#8a654a;
Statistics
float:center; text-align:center; padding-bottom:30px; padding-top:30px; background-image:url("insert image URL here"); background-repeat:no-repeat; margin:15px; font-family:arvo; font-size:10pt; color:#5e3c21; text-shadow: 2px 2px 4px #5e3c21;
Mini Biography
text-align:center; padding-top:5px; background-image:url("insert image URL here"); background-repeat:no-repeat; font-family:arvo; font-size:9pt; color:#5e3c21; text-shadow: 2px 2px 4px #5e3c21;
Some CSS hints:
You can almost put any kind of code in any part of the flair. Making a background-color in the "Main block" will affect different parts of the flair compared to if you put it in "Statistics" etc.
background-color: #834777
^ use a hex value (any six number+letters between 0-9 and a-f) to set a background color for any part of your flair.
border: solid #885f3f 1px;
^ is an example of how you can use the "border" feature. Some things to type instead of "solid" is groove, double, inset, outset, dashed, dotted... The number before "px" determines the border thickness and the number after the # is again a hex value, a color.
You can put this in the "Main block" to put a border around your whole postbit, in "Your name" for a border around your username, and so on. Try it!
border-right: solid #885f3f 1px;
^ by adding the "-right" you'll only put this kind of border on the right side of the element! Switch it for top / bottom / left if you want to put specific borders there instead OR as well. If you only use the "border" code like I wrote above, you'll but the same border on all sides of the element you're editing.
box-shadow: 0px 0px 1em #785539;
^ Play around with different numbers to see what happens! px and em are both units of thickness/size, kind of.
font-family: 'arvo';
^ Switch "arvo" for any other name of a text font that you can think of. Look in Pok?Community's text editor dropdown list of fonts for ideas :) font-family is nice to use on the "Your name" area or "Statistics" or "Mini Biography".
color: #000fd8
^ instead of changing the background's color, this changes text color. Again, useful in the areas where there will be text!
height / width / display: none;
^ these will NOT WORK! To not make you distort the threads, haha. Sorry!
^ use a hex value (any six number+letters between 0-9 and a-f) to set a background color for any part of your flair.
border: solid #885f3f 1px;
^ is an example of how you can use the "border" feature. Some things to type instead of "solid" is groove, double, inset, outset, dashed, dotted... The number before "px" determines the border thickness and the number after the # is again a hex value, a color.
You can put this in the "Main block" to put a border around your whole postbit, in "Your name" for a border around your username, and so on. Try it!
border-right: solid #885f3f 1px;
^ by adding the "-right" you'll only put this kind of border on the right side of the element! Switch it for top / bottom / left if you want to put specific borders there instead OR as well. If you only use the "border" code like I wrote above, you'll but the same border on all sides of the element you're editing.
box-shadow: 0px 0px 1em #785539;
^ Play around with different numbers to see what happens! px and em are both units of thickness/size, kind of.
font-family: 'arvo';
^ Switch "arvo" for any other name of a text font that you can think of. Look in Pok?Community's text editor dropdown list of fonts for ideas :) font-family is nice to use on the "Your name" area or "Statistics" or "Mini Biography".
color: #000fd8
^ instead of changing the background's color, this changes text color. Again, useful in the areas where there will be text!
height / width / display: none;
^ these will NOT WORK! To not make you distort the threads, haha. Sorry!
Google searches will usually put you on this page https://www.w3schools.com/css/ which I find helps you well.
Last edited: