Wolf Play : Custom Palette CSS styles
Chatbox
 Amygdala
03:25:02 Amy/Anpmygdala
Exist
Good luck. They look amazing
 ZefhyrMaracaibo
03:24:44 
i wish...ratings could be upgraded as the wolfie evolves...
 Existence
03:24:13 Exist / Kuskyn
-WP Click-
-WP Click-
-WP Click-
I am prey these girls are nice to me xD
 Amygdala
03:23:38 Amy/Anpmygdala
Exist
It's one of my favourites. The plot twist are crazy. And you don't know who the actuall villan is untill the end XD

The characters are written amazingly and it keeps you on your toes the whole time XD

But it is chinese novel so the names are a bit harder to remember
 Existence
03:20:58 Exist / Kuskyn
Amy, guess I know what I need to look for now xD
 Amygdala
03:14:48 Amy/Anpmygdala
Exist
It's the 3rd book in the series. The books recently got out but i have read it already XD

I am just happy i found atleast one
 Broken Archangel
03:14:38 Samael, Fallen, Arch
Amy interesting
 Broken Archangel
03:14:03 Samael, Fallen, Arch
Hey
 Existence
03:13:45 Exist / Kuskyn
Amy, Oo hello that looks interesting o.o
 Amygdala
03:12:56 Amy/Anpmygdala
Look at this gorgeous book i gor XD
-Click-
 ZefhyrMaracaibo
03:10:40 
sequero, saguaro
 IbukiMiodaKin
03:10:09 
I got my first twins!
 ZefhyrMaracaibo
03:10:02 
22 talents!
 Existence
02:58:38 Exist / Kuskyn
-WP Click-
I don't know if I should be disappointed or impressed xD
 Broken Archangel
02:27:43 Samael, Fallen, Arch
Hey don't you go slapping a pup because your moody XD

Your wolves played: Husk [G3|AC] is moody and Pup 59 tries to cheer them up but gets slapped.
 Broken Archangel
02:24:44 Samael, Fallen, Arch
Cae damn nice
 Caeruleum
02:23:47 Cae, Blue
Eyyy, he wasnt feeling very silly that day XD surprisingly enough i didnt get a chim this time but i did get my very first axan :D
 Broken Archangel
02:21:04 Samael, Fallen, Arch
One of my boys did give my friend a chim though XD
 Broken Archangel
02:19:44 Samael, Fallen, Arch
Cae all good my wolves have been silly lately XD
 Caeruleum
02:19:24 Cae, Blue
He did give me viti, df and ap before, maybe thats why :3

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
Cougar : -3
Ocelot : +5
Bobcat : +3
    Summer   Day  Weather:  Brimstone
 


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: 1023
#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: 1023
#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