Chatbox
 Silvers Clan
03:11:38 
Are elder berry worth using
 VioletEcho
03:10:35 Vi, Echo, Aria
Im so tempted to change my phone wallpaper to danny phantom XD :0


 VioletEcho
03:10:06 Vi, Echo, Aria
AmyD atleast you can rest now and get better<3
 Amygdala
03:04:02 Amy/Anpmygdala
Ary
Still sick but now atleast i have sick leave hehe
 Amygdala
03:02:48 Amy/Anpmygdala
Demon
Is your partner a light sleeper?
And i am sure they would understand a little bit of noise so you can sleep better
 VioletEcho
03:01:45 Vi, Echo, Aria
AmyD hey I'm doing okay thanks and how are you?
 Demon Mistress
03:01:17 The Scary Mod
@Amy
I do have some peppermint tea...but the other issue is making it is kinda loud and my partner is sleeping so I dont know, I'm torn
 Amygdala
02:59:08 Amy/Anpmygdala
I missed an oportuninty to call it anexietea lol
 Amygdala
02:58:20 Amy/Anpmygdala
Demon
Dang it ;-;
Anxiety it is i guess
(Joking)
I hope you manage to calm down a bit and get some more rest...1 hour is insane
 Demon Mistress
02:56:42 The Scary Mod
@Amy
Currently dont have any ^^'
 Amygdala
02:56:23 Amy/Anpmygdala
Hey ary
How are you
 Amygdala
02:55:58 Amy/Anpmygdala
Demon
Oof it's so scarry when something falls in the middle of the night
What about some chammomile tea?
It's supposed to have calming effects XD
 VioletEcho
02:54:57 Vi, Echo, Aria
Yayy AmyD
 Demon Mistress
02:50:35 The Scary Mod
@Amy
A sleep deprived demon here, I slept for like an hour, then my TV fell and woke me back up, now, no sleep anxiety
 Amygdala
02:48:41 Amy/Anpmygdala
Morning guys
 Feiella
02:23:46 Pack of Sharp Snap
hey Desti
 VioletEcho
02:15:21 Vi, Echo, Aria
Hi Desti
 Destinations End
02:08:58 Toliska, Desti, Coy
Hey
 Boo
02:04:21 Chrissy
real.
 Spirit Wolves
02:00:05 Spirit (Her/She)
Your wolves played: Pine gets mad at the alphas new rules.

He is the alpha.

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
Bobcat : -3
Coyote : 0
Sun Bear : +2
    Spring   Night   Heavy Rain  Moon: 
 


Forums

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

My Subscriptions
My Bookmarks
My Topics
Latest Topics
Following
Forums > Member Help > Guides
   1   ..    14    15    16    17    18   ..   40 

Custom Palette CSS stylesMarch 23, 2021 01:27 AM


Albino

Darkseeker
 
Posts: 2052
#2494807
Give Award
Might just be me not seeing it but where or what code would be for the white backgrounds in the bio, info, featured wolf, my awards, my familiars, and wolves tabs? On the den page~
Custom Palette CSS stylesMarch 23, 2021 01:40 AM


Dire

Neutral
 
Posts: 2391
#2494808
Give Award

Xesei said:
Might just be me not seeing it but where or what code would be for the white backgrounds in the bio, info, featured wolf, my awards, my familiars, and wolves tabs? On the den page~


There is not an only way to change them, the shortest code for it is:


table div:nth-child(1) {background:rgba(1, 1, 1, 0.99);}


Those white backgrounds don't have a specific class/id so the code would change some unexpected places. (For this particular line the main places are battle screen, forums post blocks and during an item selection)




Custom Palette CSS stylesMarch 23, 2021 02:07 AM


Albino

Darkseeker
 
Posts: 2052
#2494823
Give Award

Dire said:

Xesei said:
Might just be me not seeing it but where or what code would be for the white backgrounds in the bio, info, featured wolf, my awards, my familiars, and wolves tabs? On the den page~


There is not an only way to change them, the shortest code for it is:


table div:nth-child(1) {background:rgba(1, 1, 1, 0.99);}


Those white backgrounds don't have a specific class/id so the code would change some unexpected places. (For this particular line the main places are battle screen, forums post blocks and during an item selection)






Ah alrighty! Thank you~
Custom Palette CSS stylesMarch 23, 2021 04:32 AM


Albino

Darkseeker
 
Posts: 2052
#2494831
Give Award
Nvm! Worked finally!
instead I'm asking about how to code your own image background to only have the single image instead of the repeating grid style?

Edited at March 23, 2021 05:20 AM by Xesei
Custom Palette CSS stylesMarch 23, 2021 05:31 AM


Former Pack

Neutral
 
Posts: 0
#2494836
Give Award
Did you try background-image: repeat or no-repeat?

Xesei said:
Nvm! Worked finally!
instead I'm asking about how to code your own image background to only have the single image instead of the repeating grid style?


Custom Palette CSS stylesMarch 23, 2021 06:31 AM


Albino

Darkseeker
 
Posts: 2052
#2494840
Give Award

Devil's Gambit said:
Did you try background-image: repeat or no-repeat?

Xesei said:
Nvm! Worked finally!
instead I'm asking about how to code your own image background to only have the single image instead of the repeating grid style?


Just tried it! (Might be wrong CSS) Doesn't seem to want to do it any way I put it~
Custom Palette CSS stylesMarch 23, 2021 07:08 AM


Former Pack

Neutral
 
Posts: 0
#2494851
Give Award
I do it like this: .daybody {background: #000 url(https://i.postimg.cc/Kj0V8dML/32-CDF941-8-F22-4-C5-E-8559-9-A11-B63655-A8.jpg); background-size: 100%; background-repeat: repeat;background-attachment: fixed;background-size: cover; background-position: center;border:0px;}
Try that with your link, altogether, and see if it works. If not, something else may be canceling it.

Xesei said:

Devil's Gambit said:
Did you try background-image: repeat or no-repeat?

Xesei said:
Nvm! Worked finally!
instead I'm asking about how to code your own image background to only have the single image instead of the repeating grid style?


Just tried it! (Might be wrong CSS) Doesn't seem to want to do it any way I put it~


Custom Palette CSS stylesMarch 23, 2021 07:17 AM


Albino

Darkseeker
 
Posts: 2052
#2494853
Give Award

Devil's Gambit said:
I do it like this: .daybody {background: #000 url(https://i.postimg.cc/Kj0V8dML/32-CDF941-8-F22-4-C5-E-8559-9-A11-B63655-A8.jpg); background-size: 100%; background-repeat: repeat;background-attachment: fixed;background-size: cover; background-position: center;border:0px;}
Try that with your link, altogether, and see if it works. If not, something else may be canceling it.

Xesei said:

Devil's Gambit said:
Did you try background-image: repeat or no-repeat?

Xesei said:
Nvm! Worked finally!
instead I'm asking about how to code your own image background to only have the single image instead of the repeating grid style?


Just tried it! (Might be wrong CSS) Doesn't seem to want to do it any way I put it~




Ah thank you! Now it is a singular image :D
Custom Palette CSS stylesMarch 23, 2021 07:24 AM


Former Pack

Neutral
 
Posts: 0
#2494855
Give Award
Xesei,
No problem, glad it worked :D
Custom Palette CSS stylesApril 9, 2021 03:24 PM


Former Pack

Neutral
 
Posts: 0
#2509043
Give Award
Hi, Im new with code CSS, so someone could help me:
-insert a banner
-change the color of the message from point
-change background forest imagine
-change white backround under den, avards and more

Thanks for help, I can replay you with a "dontation" ^).
Greetings

Forums > Member Help > Guides
   1   ..    14    15    16    17    18   ..   40 

Refresh










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