« Back to the tamanotchi owners Forum

Add Custom CSS to your Tama!

Posted by Daniel aka MELONKING

posted
updated

Forum: tamanotchi owners Group

If you didn't know; you can add custom css to your TamaNOTchi pages - just go to your settings and pick the Custom CSS tab!

Here is an example: https://tamanotchi.world/4248c

Maybe share some of your CSS snippets below! Here is one to get you started!

#main {

font-family: fantasy;

}

^^ This chnages the font of your pet page!


Report Topic

9 Replies

Sort Replies:

Reply by crimson

posted

how did you stop the tamanotchi's animation?


Permalink Report Reply

Reply by Utopineva

posted

#main {


font-family: cursive;


}


body {

ย background-image: url("https://64.media.tumblr.com/8f84f7de560cd5ecff62ef41bf043e40/c9f8b6457f56ea92-0d/s640x960/e55e6293dc79c49355369b3375815ce1a98fa981.gifv");

ย background-color: #FFC0CB;

}



Idk how to change the text color


Permalink Report Reply

Reply by Edward La Pomme

posted

That CSS is super cute!!! Thanks!


Permalink Report Reply

Reply by Edward La Pomme

posted

#main {


font-family: serif;


}


body {


ย background-image: url("https://64.media.tumblr.com/8e202cd88d06aca9e693a8a75b84252f/47c645ee8156a33c-4f/s250x400/d1a333dc7cdcc9843096d633a46a5e73d8ff4e9c.pnj");


ย background-color: #93207A;


}


Permalink Report Reply

Reply by Veronika_Vampire

posted

Does anyone know how to get rid of the white border between the title and content part of a pet's page? It seems like that part is separate from both elements.


Permalink Report Reply

question:


how do u change the foreground colour? ik how to change the background, but what about the foreground?


Permalink Report Reply

here's my layout :D


<!-- Layout by hottopicwannabe (https://spacehey.com/tiger09te). Please keep this note when using this layout. Feel free to edit it as much as you want -->

/* this changes the font, the foreground color and the text's color, in that order */

#main {
ย font-family: fantasy;
ย background-color: #C3E7F165;
ย color: #151950;
}

/* this changes the hyperlinks' color */

a:link,a:visited {
ย color: #9D4AD8;
}

/* this changes the background */

body {
ย background-image: url("https://f.feridinha.com/aVNNU.png");
ย background-size: cover;
}

/* this changes the header's color. It also makes it translucent */

#header {
ย background-color: #C3E7F199;
}

/* this changes the site's text logo*/

#logotext {
ย content: url("https://f.feridinha.com/roaAp.png");
}

/* this changes the site's image logo*/

#logoimg {
ย content: url("https://f.feridinha.com/f6i5U.png");
}

/* this changes the footer's text color (the original was too light so it wasn't very readable with the background I put on this layout */

#footer {
ย color: #3A3B40;
}


Permalink Report Reply

Reply by a casket kid

posted

heres mine!! -> https://tamanotchi.world/17957


:root{
--prim-col: black;
--sec-col: #15b3bc;
--sec-col-hov: #01769c;
--tri-col: white;
--bg: url(https://fukounaglr.neocities.org/images/waves.jpg);
--fav: url(https://fukounaglr.neocities.org/graphics/pixels/vapo2.gif);
}

* {
color: var(--tri-col);
}

.even, #profileflavortext, #petholder {background-color: #002c49}

.odd, .colname {background-color: #00112e}

input{background-color: var(--sec-col)}

#decorations{
display: none;
}

a{
color: var(--sec-col);
}
a:hover{
color: var(--sec-col-hov);
}

#header{
background: var(--sec-col);
color: var(--tri-col);
}

#footer{
background: #002c49;
color: var(--tri-col);
}

#shade1{
background: var(--bg);
}

#title{
color: var(--sec-col);
}

#title::after{
content: "https://fukounaglr.neocities.org/";
display: block;
color: var(--sec-col-hov);
font-size: 0.5Em;
}
ย .username{
color: var(--sec-col-hov);
}

#title::before{
content: var(--fav);
}

#main{
background: var(--prim-col);
}


Permalink Report Reply

Reply by T43Inkkatt โ˜†*(^w^)/ ~*โ˜†

posted
updated

You can add text to parts of your profile by coding in:

ย #[section of page]::after{

content: "[what you want to type]";

display: block;

color: var(--sec-col-hov);

[ and now you can edit the text however you please, like color size font etc ]

}


If you want to add text specifically under your pet's image then you can type:

#petholder span::after{


Here's my pet as an example:

https://tamanotchi.world/18196


(i might have stolen a line of code from the casket kid below me)(props to them for the OG idea!)


Permalink Report Reply