Wolf Play : Custom Palette CSS styles
Chatbox
 Wilverbeast
11:10:34 Will
@Leo

Ah unfortunately I'm on my bus now X"D
But next time lol
 Demonic Entity
11:09:32 Agthamos (he/They)
Lilith licks an icicle and gets their tongue stuck to it.

Stats: Wisdom +3
Mood: Sheepish

where the hell did you find an icicle?
 Leo
11:08:49 Leo, Lion (He/him)
Will
XD Rematch?
 Demonic Entity
11:08:16 Agthamos (he/They)
i fucking love pizza
 Wilverbeast
11:07:56 Will
@Leo

Buffy is literally
The *worst* battle wolf ever lmao 😭
I keep holding out hope but damn
 Leo
11:07:36 Leo, Lion (He/him)
Will
Good game :)
 Leo
11:07:13 Leo, Lion (He/him)
Will
XD I firstly started using Calixto yesterday and she is already kicking ass XD
 Wilverbeast
11:06:05 Will
Not Buffy missing @-@
Sir
Sir please
 Salem
11:05:29 Salem (He/They)
-WP Click-
 Leo
11:04:58 Leo, Lion (He/him)
Crook
Good game!
 Crooked Magic
11:04:44 Crook, PANcake
Leo, good game!
 icemoons
11:03:06 slushy,ice,moon,
barkfur wags their tail vigorously when cassandra comes around them.


Affinity: --- Strong Like
Mood: Outgoing

aww my boy has a crush! lmao
 ~The Divine~
11:00:48 Mama Dee
pvp anyone?
 Leo
10:59:48 Leo, Lion (He/him)
Boo
Lmao!XD
 Boo
10:59:21 Chrissy
my puppy is obsessed with my cats tunnels. he's almost too big to fit in them so i'll have to buy him his own.
 Leo
10:58:28 Leo, Lion (He/him)
Close to 200 PvP wins :3
 Leo
10:57:44 Leo, Lion (He/him)
Ace
Good game!
 Hunting Leopard
10:57:11 It's I Nesta
Leo
Spam attack please :)
 Wilverbeast
10:56:21 Will
Open to hearing about other's puppy experiences!
-WP Click-
If it's only me talking it'll be so sad lmao 😭
 Leo
10:54:36 Leo, Lion (He/him)
Fixed!

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
Mojave Green Rattler : +3
Water Moccasin : 0
Cheetah : +4
    Summer Month: 2   Night  Weather:  Clear  Moon: 
 Battle  Explore In: Now


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  19  20  21  22 .. 37

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
Game Moderator
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: 1017
#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: 1017
#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 ..  14  15  16  17  18  19  20  21  22 .. 37

Refresh










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