Wolf Play : Custom Palette CSS styles
Chatbox
 Blade of Dreams
12:35:30 Winter, anything
Topaz,
My school is too noble to use those words. Most of the time:
 Blade of Dreams
12:34:43 Winter, anything
Ember,
I am too, but my uncanny ability to appear behind them is apparently not their favorite thing.
 Embershed
12:34:40 The Minor Nuisance
Fire,
Yes. I am sorry. But I lived in a house with 7 other people whom I've never met before for an entire month, and they brainrotted all over the house. Some of it rubbed off. But I m NEVER going to say the sk word.
 FirePack
12:34:40 Autumn/Fire
Whisper
Y'know what's banned from my classroom? Skibidi Toilet and Gyat.
 Blade of Dreams
12:33:48 Winter, anything
Ember,
That word.. it is literally illegal at my school by now.
 Embershed
12:33:19 The Minor Nuisance
Blade,
Well...not really for me. I guess you could say I'm a teacher's pet. I always answer questions and get good-ish marks.

Except for social studies.

We don't talk about social studies.

*Traumatized wimpering*
 FirePack
12:33:15 Autumn/Fire
Embershed
Rizz? Well, I do guess that word is worldwide, not just in my pathetic school.
 Embershed
12:32:19 The Minor Nuisance
Fire,
I gave her some r i z z
 Blade of Dreams
12:32:12 Winter, anything
Ember,
Definitely! ItÂ’s hard though sometimes; especially with teachers.
 FirePack
12:31:15 Autumn/Fire
Embershed
Bornite, any Stat/s.
 Embershed
12:31:10 The Minor Nuisance
Blade,
Hi-five, fellow sleep paralysis demon!
 Blade of Dreams
12:30:27 Winter, anything
Ember,
That is literally me! I will just be innocently standing behind someone waiting and theyÂ’ll turn around and start screaming!
 Embershed
12:30:21 The Minor Nuisance
Fire,
Ok, which wolf and which stat/s?
 FirePack
12:30:04 Autumn/Fire
*Me.
 FirePack
12:29:51 Autumn/Fire
Embershed
ME.
 Embershed
12:29:36 The Minor Nuisance
Now, who wants 5 cp?
 Embershed
12:28:31 The Minor Nuisance
Blade, Devil town,
Same, basically. IRL I have this bad habit of walking silently, so I have a tendncy to creep up behind people and scare the living heck out of them.

I also just happen to have a grin that's too big for my face, and people find it creepy.

I'm also very tall, and basically I just sorta...loom over people.

As I said, sleep paralysis demon of small children.
 Suburban Disaster
12:28:16 Key | Froggy | Keevy
Vah,
Thank you
 Blade of Dreams
12:28:15 Winter, anything
Topaz,
Really?! Hehehe
 FirePack
12:27:40 Autumn/Fire
Whisper
I didn't dare anyone. Who did you dare? Why are we daring people? That's it--Vah, truth or dare?

Refresh

You must be a registered member for more
than 1 day before you can use our chatbox.
Quests
Alliance Battles
Challenges
Hourly Damage Variances
Black Panther : -4
Cheetah : +1
Spotted Hyena : -4
    Fall Month: 3   Day  Weather:  Hurricane
 Explore In: Now


Forums

→ Wolf Play is a fun game! Sign Up Now!

My Subscriptions
My Bookmarks
My Topics
Latest Topics
Following
Forums > Member Help > Guides
  1 ..  19  20  21  22  23  24  25  26  27 .. 37

Custom Palette CSS stylesJuly 31, 2021 11:41 PM

Anatheriya
Neutral
 
Posts: 1127
#2596167
Give Award
Okay thank you ^-^

Dire said:

Venerixen said:
How do I change color of font where it says "The ground becomes quite rocky."?
20.3
Venerixen said:
Is there a way to change the fony color of the moves, level and predator ammount?


20.1



Venerixen said:
and is there a way to change the color of the arrows and adventure box colors?


I haven't found a way to change the colors of the arrow or the explore yellow box, they're images provided by the game itself.


Custom Palette CSS stylesJuly 31, 2021 11:46 PM

Dire
Neutral
 
Posts: 2391
#2596171
Give Award

Venerixen said:
So this is turning the right color when I hover but the text it black when I don't in the folder area. How do I fix that? Screenshot 2021 08 01 003745 — Postimages (postimg.cc)


Add this property

ul.tabbernav li a:hover {
background: #efecc8; color: #ff00ff;
}

These last 2 aren't listed in the first page of this thread, so add these in your palette code please ^^ (This is for text color of unselected tabs)

ul.tabbernav li a:link {
color: #0000ff;
}
ul.tabbernav li a:visited {
color: #0000ff;
}

Edited at July 31, 2021 11:56 PM by Dire
Custom Palette CSS stylesJuly 31, 2021 11:54 PM

Anatheriya
Neutral
 
Posts: 1127
#2596179
Give Award
Alrighty thank you ^-^

Dire said:

Venerixen said:
So this is turning the right color when I hover but the text it black when I don't in the folder area. How do I fix that? Screenshot 2021 08 01 003745 — Postimages (postimg.cc)


Add this property

ul.tabbernav li a:hover {
background: #efecc8; color: #ff00ff;
}

These last 2 aren't listed in the first page of this thread because so add these in your palette code please ^^ (This is for text color of unselected tabs)

ul.tabbernav li a:link {
color: #0000ff;
}
ul.tabbernav li a:visited {
color: #0000ff;
}


Custom Palette CSS stylesAugust 1, 2021 10:18 AM

queen.
Neutral
 
Posts: 3581
#2596261
Give Award
what is the code to make the page color have less opacity? if that makes sense~
Custom Palette CSS stylesAugust 1, 2021 10:31 AM

Fair Phantom
Darkseeker
 
Posts: 511
#2596268
Give Award
.pgbg {
background-color: rgba(0, 0, 0, 0.75);
}
The last number is the opacity, where 1 is no opacity at all and 0 is fully transparent. You can use decimals to get the specific transparency you want, so 0.50 would be 50% opacity and 0.75 like in the above code would be 75% opacity. The first 3 numbers are the red, green, and blue hues that make up the color (hence the rgb). The "a" represents alpha, which adjusts the opacity of the color. The color in the code above is black (0, 0, 0). White is (255, 255, 255). You can look up other rgba colors as well and there is also rgba color pickers you can search for.

I hope I explained it good enough. ^^

queen. said:
what is the code to make the page color have less opacity? if that makes sense~


Custom Palette CSS stylesAugust 1, 2021 12:45 PM

Caeruleum
Neutral
 
Posts: 1017
#2596298
Give Award
Venerixen said:
and is there a way to change the color of the arrows and adventure box colors?
Adventure text and background:
.mainlinetan2
{color: #HEX; background-color: #HEX;}

The whole yellow table in explore:
.mazelevel + table td[bgcolor] {background: #HEX !important; background-image: none !important;}


Custom Palette CSS stylesAugust 1, 2021 01:26 PM

Anatheriya
Neutral
 
Posts: 1127
#2596318
Give Award
Thank you!!! ^-^

Crescent Moon Pack said:
Venerixen said:
and is there a way to change the color of the arrows and adventure box colors?
Adventure text and background:
.mainlinetan2
{color: #HEX; background-color: #HEX;}

The whole yellow table in explore:
.mazelevel + table td[bgcolor] {background: #HEX !important; background-image: none !important;}




Custom Palette CSS stylesAugust 1, 2021 03:06 PM

queen.
Neutral
 
Posts: 3581
#2596371
Give Award
thank you! this helps a lot <:

Fair Phantom said:
.pgbg {
background-color: rgba(0, 0, 0, 0.75);
}
The last number is the opacity, where 1 is no opacity at all and 0 is fully transparent. You can use decimals to get the specific transparency you want, so 0.50 would be 50% opacity and 0.75 like in the above code would be 75% opacity. The first 3 numbers are the red, green, and blue hues that make up the color (hence the rgb). The "a" represents alpha, which adjusts the opacity of the color. The color in the code above is black (0, 0, 0). White is (255, 255, 255). You can look up other rgba colors as well and there is also rgba color pickers you can search for.

I hope I explained it good enough. ^^

queen. said:
what is the code to make the page color have less opacity? if that makes sense~




Custom Palette CSS stylesAugust 1, 2021 03:11 PM

queen.
Neutral
 
Posts: 3581
#2596377
Give Award
okay, so another question~
i got the opacity to work with the color i wanted, but i can actually see the header image below that. how would i remove that image, exactly, and why am i seeing it?
Custom Palette CSS stylesAugust 1, 2021 03:28 PM

Caeruleum
Neutral
 
Posts: 1017
#2596382
Give Award
queen. said:
okay, so another question~
i got the opacity to work with the color i wanted, but i can actually see the header image below that. how would i remove that image, exactly, and why am i seeing it?
You need to add background-repeat: no-repeat; to the header code so the image doesnt repeat itself

Forums > Member Help > Guides
  1 ..  19  20  21  22  23  24  25  26  27 .. 37

Refresh










Copyright ©2013-2024 Go Go Gatsby Designs, LLC    All Rights Reserved
Terms Of Use  |   Privacy Policy   |   DMCA   |   Contact Us