Chatbox
 distant-lands
12:54:38 katy | beetle
vilk,
thank you ^^
 distant-lands
12:53:59 katy | beetle
16 of 15 slots are full.
how did i manage that? lmao
 Vilkas
12:50:01 Vilk
Love it Katy!
 distant-lands
12:42:02 katy | beetle
-Click-

thoughts? :>
 Pink Floral Cavern
12:21:29 CannibalCupid
I wanna draw, idk what tho
 Existence
12:06:38 Exist / Kuskyn
-WP Click-
My lovely boy is done now just to make his match <3
 Catori
12:03:10 Cat
*fortuitous Boldness
 Catori
11:55:15 Cat
Winter
I don't do swamp that often either, I don't get that many enemies there haha

Katy
She is absolutely gorgeous, congrats! I'm trying to get a Mela HH lol... all I got was a Mela + Fortious blessing in the many many breedings lol
 distant-lands
11:48:07 katy | beetle
-WP Click-
paws? :)
 Winter Haven
11:47:35 winter
lol my bounty's in swamp and i hate exploring there so i guess it'll never happen unless there's an event in swamp again
 Catori
11:42:09 Cat
Finally after 50+ levels in the forest I have found diege the owl and finished my bounty :D
 The Reaper
11:34:45 Reaper / Grim
Cat
For real lol
 Catori
11:32:17 Cat
I feel like wishbones take forever to accumulate even though there are so many haha
 The Reaper
11:30:59 Reaper / Grim
Cat
I feel like I've thrown a shit ton of wish bones at you and they haven't even made a dent X'D
 Catori
11:30:53 Cat
:D
 The Reaper
11:30:07 Reaper / Grim
Cat
Thanks! :D
 Catori
11:28:11 Cat
Hmm I think person A should, and have them mysteriously watching them at times during the event :P
 The Reaper
11:26:28 Reaper / Grim
I need y'all's opinion, I'm writing a story and I'm trying to figure out if person A should know if person B is at the event or not (It's the beginning of the story and they havent seen eachother in years. Person B doesn't realize person a is there)
 Zeraphia
11:14:24 Vah is Vah
I'm headed off though. See y'all tomorrow!
 Lackadaisy
11:14:19 Stray is boiling.
Vah,

Knowing me, I'll spend the next 2 hours rolling around trying to get comfortable, and then get a total of an hour of sleep, but oh well.

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 Bear : +5
Ermine : +1
Jackal : 0
    Winter   Day   Fog
 


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