Wolf Play : Custom Palette CSS styles
Chatbox
 Amygdala
05:38:07 Amy/Anpmygdala
Plane
Just a bit XD

I am lucky i had 2 days off...i go back to work tomorrow though so i won't be as crazy
 Desna
05:37:35 
Mod needed in sales if any are on. It's been going on all day.
 Boeing
05:36:17 Boe is a bear, Rawr!
Amt has turned into a sweaty Explore grinder. Damnit.
 Amygdala
05:35:37 Amy/Anpmygdala
Plane
It was just a ghost XD

It's 30 minutes after midnight so not too bad....yet...

Yesterday i explored till 3am XD
 Boeing
05:34:23 Boe is a bear, Rawr!
Amt
Oops. Yeah I'm not too sure why I thiught I saw an Amy in chat
 Amygdala
05:33:31 Amy/Anpmygdala
Plane
Nope...i don't see any amy here XD
 Boeing
05:32:04 Boe is a bear, Rawr!
Purge
Maybe... I wasn't paying much attention to chat at the time lol

Amy you're still here?
 Purgatory
05:30:33 Purge/Purse/Pug
I think she said it won't have a reward starting out in order to beta test it
 Amygdala
05:30:17 Amy/Anpmygdala
800 mobes before i can sleep...let's do this
 BuggyOs
05:24:12 Bug-a-boo
Boe
ooh, i didn't hear about that! That's cool though :)
 Boeing
05:20:59 Boe is a bear, Rawr!
Bug
No idea what it is. Eve mentioned a new minigame was coming out this week last week though and mushroom prizes soo
 Everlasting Torment
05:20:55 Anubis, Samael
Damn it's so far away XD
 BuggyOs
05:19:57 Bug-a-boo
Boe
new minigame?
 Boeing
05:19:19 Boe is a bear, Rawr!
We don't know sadly
The new minigame is this week sometime though ^^
 Magnus Bane
05:18:55 Mag/Maggy
Like the valentine and st pattys event
 Magnus Bane
05:18:34 Mag/Maggy
If it's a Halloween event, I imagine it'll be on the 31st
 Radiant Den
05:15:34 Foxtails, Inayah
Good afternoon everyone!
 BuggyOs
05:15:10 Bug-a-boo
Bked
red healing potion or robin feather!
 Jade285
05:14:45 Bked
What cures an infected wound?
 Everlasting Torment
05:14:13 Anubis, Samael
Do we have a date for the wolparty event?

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
Bengal Tiger : -5
Mojave Green Rattler : -3
Death Adder : -2
    Spring   Day  Weather:  Sunny
 


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-2024 Go Go Gatsby Designs, LLC    All Rights Reserved
Terms Of Use  |   Privacy Policy   |   DMCA   |   Contact Us