Chatbox
 The Reaper
02:54:49 Reaper / Grim
Marsh
Lol, I saw sin and pi and went "Ah shit, not this again- I just took precal with trig! No more!" XD But damn, engineering? That's awesome
 Red River Wolves
02:53:52 Redd Dead
Pizza,
Skill issue
 Rogue Wildfires
02:53:30 Rogue
Bow,
Oop
 starmutt
02:53:26 marsh | they/it
engineering achtually 🤓 but yeah im doing homework LOL
 Boeing
02:52:55 Boe is a bear, Rawr!
Day 2 of having to put up with 524 errors being issued by WP ;-;
-Click-
 Rogue Wildfires
02:52:36 Rogue
loll
 Acerbus.
02:52:06 Ace | Cerberus
Marsh
That is PERFECT thank you so much ;-; you are amazing
 The Reaper
02:51:52 Reaper / Grim
Marsh
Not the math homework XD
 starmutt
02:51:27 marsh | they/it
Ace
i think put it somewhere here? -Click-
move it to the left more if needed
or like tuck it like reaper said lol
 Amygdala
02:51:21 Amy/Anpmygdala
Ary
Why would you do this to mee ;-;
(Joking)
 Acerbus.
02:51:21 Ace | Cerberus
Vah, Reaper
I'll give it a shot, hopefully that works. I think I just need to work the angle a bit from what I've been trying >.>
 Amygdala
02:51:04 Amy/Anpmygdala
Fei
My older cat sleeps untill i wake up
The kitted does not lol
She has too much energy
 VioletEcho
02:49:51 Vi, Echo, Aria
Zee ;-; it was so fun, I had my headphones on and music was loud so I got scared cause he just went bamm
Brother applicant: open
Nah I love him XD
AmyD I can't be the only one suffering<33
 Feiella
02:49:46 Pack of Sharp Snap
Amy
It is almost 5am and after I got something to eat only now mine is zooming about
 The Reaper
02:48:04 Reaper / Grim
Ace
I agree with Vah, unless you wanted to tuck the wing into it's side which would eliminate the problem lmao
 Zeraphia
02:47:10 Vah = bad influence
Ace

I think if you can just "hide" the joint behind the rest of the body and have the wing shape follow the same direction as the first one it might look fairly okay?
 Amygdala
02:43:20 Amy/Anpmygdala
Ary
Nooooo
I thought i forgot about that

Fei
They are playing now which is good so they can sleep at night XD
 Acerbus.
02:43:07 Ace | Cerberus
-Click-

Anybody know how I can make this second wing look normal? I can't seem to sketch it on right >.>
 Nesta
02:43:04 Nes/Spider
Excho
How was the hulk smash?
 VioletEcho
02:41:27 Vi, Echo, Aria
No because sweet dreams is giving me flashbacks of jyp😭😭

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
Coyote : +3
Snapping Turtle : -3
Jaguar : +1
    Spring   Day   Flood
 


Forums

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

My Subscriptions
My Bookmarks
My Topics
Latest Topics
Following
Forums > Member Help > Guides
   1   ..    21    22    23    24    25   ..   40 

Custom Palette CSS stylesJuly 31, 2021 11:41 PM


Vyratheriya

Neutral
 
Posts: 1150
#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


Vyratheriya

Neutral
 
Posts: 1150
#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: 3636
#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: 1044
#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


Vyratheriya

Neutral
 
Posts: 1150
#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: 3636
#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: 3636
#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: 1044
#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   ..    21    22    23    24    25   ..   40 

Refresh










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