Wolf Play : Custom Palette CSS styles
Chatbox
 starmutt
07:30:02 marsh | they/it
buried under a bunch of stuff lol
 starmutt
07:29:52 marsh | they/it
jasmines in falls
 Faulty Demons
07:25:12 Ollie, Gold
I got this girl with a charons blessing
-WP Click-
 Vulpixles
07:19:29 Pixie, Vul | ♈
-WP Click-

Not a terrible Charon's pull
 Amygdala
07:18:30 Amy/Anpmygdala
-WP Click-

He is 10 real life months old...my firt alpha XD
 Everlasting Torment
07:17:40 Anubis, Samael
thats good
 MINEOLA
07:16:53 Alfi Darky
@Gabriel
IÂ’m good
 Existence
07:16:45 Exist / Kuskyn
-WP Click-
I think this poor girl is sick of my throwing warrior stones at her xD
 Everlasting Torment
07:13:57 Anubis, Samael
how are you castial
 MINEOLA
07:12:44 Alfi Darky
@Gabriel
Hey

@Sollecura
I already have like 5 warrior stones saved for them XD
 Magnus Bane
07:10:29 Mag/Maggy
When you start finding bald eagle feathers a day late
 Everlasting Torment
07:09:26 Anubis, Samael
castel!!
 Sollecura
07:07:55 
Alfi

It's so expensive 😭😭 I've spent maybe 10 apples on this guy since June probably
 Existence
07:07:50 Exist / Kuskyn
Sollecura; I have a Battle Cerberus 25 times, I had finish one yesterday but I don't remember what it was my poor team just gets toss into explore to finish things xD
 Sollecura
07:07:18 
Oop found one, thank you!!!
 MINEOLA
07:06:56 Alfi Darky
@Sollecura
I have 2 wolves IÂ’m going to warrior stone IÂ’m trying to keep them forever if I can
 Amygdala
07:06:46 Amy/Anpmygdala
-WP Click-

This guy was my best pull...hades dys was of course added later lol
 Sollecura
07:06:21 
Exist

Omg wait....which ones
 Everlasting Torment
07:05:57 Anubis, Samael
deffently
 Existence
07:05:36 Exist / Kuskyn
Sollecura, There are quests that can give you a warrior stone.

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 : 0
Mojave Green Rattler : +3
Ermine : +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   ..    16    17    18    19    20   ..   40 

Custom Palette CSS stylesMay 8, 2021 10:34 AM


Fair Phantom

Darkseeker
 
Posts: 511
#2537828
Give Award
.mainlineblacksmall {
color: #######;
}

Savage said:
Does anyone know if I can change the text color here?

image.png


Custom Palette CSS stylesMay 8, 2021 10:44 AM


.Karma

Neutral
 
Posts: 2397
#2537831
Give Award
awesome thank you
Custom Palette CSS stylesMay 8, 2021 10:45 AM


Fair Phantom

Darkseeker
 
Posts: 511
#2537832
Give Award
You're welcome. ^^
Custom Palette CSS stylesMay 15, 2021 04:36 PM


Lone

Neutral
 
Posts: 1469
#2544545
Give Award
How can I change the color of a pack name on sales and main chat? If you could please leave an example as well that way I have an idea. Im a visual learner lol.
Custom Palette CSS stylesMay 15, 2021 08:38 PM


Dire

Neutral
 
Posts: 2391
#2544699
Give Award

Lone said:
How can I change the color of a pack name on sales and main chat? If you could please leave an example as well that way I h/*ave an idea. Im a visual learner lol.


The ones you mention are related to .bsmalltext selector
These are the codes for chatbox text

/* Nicknames in chat */
.bsmalltext {font-family:arial,sans-serif; color:#000000;}
/* Pack names in chat - visited should be the same as link */
.bsmalltext a:link {font-family:arial,sans-serif; color:#010101;}
.bsmalltext a:visited {font-family:arial,sans-serif; color:#010101;}
/*Pack names in chat - hovered*/
.bsmalltext a:hover {font-family:arial,sans-serif; color:#020202;}

/*Message text*/
.smalltextblack {font-family:arial,sans-serif; color:#030303;}
/*Links (WP,YT,Click) - visited should be the same as link */
.smalltextblack a:link {font-family:arial,sans-serif; color:#040404;}
.smalltextblack a:visited {font-family:arial,sans-serif; color:#040404}
/* Links - hovered */
.smalltextblack a:hover {font-family:arial,sans-serif; color:#050505;}




It's possible to make sales chat text color different from main chat, the codes are similar, it just needs to specify which are for each chat at the beginning (.saleschat.sales or .saleschat.main)

/* MAIN CHAT TEXT */

.saleschat.main .mainbsmalltext {font-family:arial,sans-serif; color:#5579af;}
.saleschat.main .bsmalltext a:link {font-family:arial,sans-serif; color:#4d9afb;}
.saleschat.main .bsmalltext a:visited {font-family:arial,sans-serif; color:#4d9afb;}
.saleschat.main .bsmalltext a:hover {font-family:arial,sans-serif; color:#538ad0;}

.saleschat.main .smalltextblack {font-family:arial,sans-serif; color:#0f90ff;}
.saleschat.main .smalltextblack a:link {font-family:arial,sans-serif; color:#1179d2;}
.saleschat.main .smalltextblack a:visited {font-family:arial,sans-serif; color:#1179d2;}
.saleschat.main .smalltextblack a:hover {font-family:arial,sans-serif; color:#60aae8;}

/* SALES CHAT TEXT */
.saleschat.sales .bsmalltext {font-family:arial,sans-serif; color:#a13a3a;}
.saleschat.sales .bsmalltext a:link {font-family:arial,sans-serif; color:#310505;}
.saleschat.sales .bsmalltext a:visited {font-family:arial,sans-serif; color:#310505;}
.saleschat.sales .bsmalltext a:hover {font-family:arial,sans-serif; color:#d80000;}

.saleschat.sales .smalltextblack {font-family:arial,sans-serif; color:#cc0000;}
.saleschat.sales .smalltextblack a:link {font-family:arial,sans-serif; color:#a80b0b;}
.saleschat.sales .smalltextblack a:visited {font-family:arial,sans-serif; color:#a80b0b;}
.saleschat.sales .smalltextblack a:hover {font-family:arial,sans-serif; color:#ff0000;}

Edited at May 15, 2021 08:50 PM by Dire
Custom Palette CSS stylesMay 17, 2021 02:21 PM


Dragonhorse

Darkseeker
 
Posts: 5794
#2546290
Give Award
How do I put an image in the header? Sorry if I missed the responce to this question already
Custom Palette CSS stylesMay 17, 2021 02:26 PM


Caeruleum

Neutral
 
Posts: 1022
#2546293
Give Award
Dragonhorse said:
How do I put an image in the header? Sorry if I missed the responce to this question already
.mainscreen1{background:url(LINK);}
.mainscreen2{background:url(LINK);}
.mainscreen3{background:url(LINK);}
.mainscreen4{background:url(LINK);}
Custom Palette CSS stylesMay 17, 2021 07:18 PM


Dragonhorse

Darkseeker
 
Posts: 5794
#2546617
Give Award
How do I make my header dissapear? XD I'm sick of my dumb self not being able to size it right. Or what is the size for the header?
Custom Palette CSS stylesMay 17, 2021 09:07 PM


Caeruleum

Neutral
 
Posts: 1022
#2546741
Give Award
Size is 900x200 px; to make it disappear just put background:transparent;
Custom Palette CSS stylesMay 23, 2021 11:39 AM


Former Pack

Neutral
 
Posts: 0
#2552085
Give Award
I am soo confused

Forums > Member Help > Guides
   1   ..    16    17    18    19    20   ..   40 

Refresh










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