|

Darkseeker
|
Edited at September 26, 2025 02:12 PM by DarkAngels
|
|
|
|

Darkseeker
|
little confused on this one. the code to change the pack happiness bar color / character attributes is breaking the rest of the palette and forcing the profile color and parts of the wolf page to also be white; making the font difficult to read. i don't want to change the font color because than the rest of the site will be hard to read >.> does anyone have a better code for it, or know what i'm doing wrong here? .. . screenshots: the code i'm using: /* Pack Happiness Bar Color */ .mainlineblack .mainlineblack div { border-radius: 0px !important; background: rgba(232,223,221,0.7) !important; } ..... /* Wolf CP Bar Color */ #rightcolumn .mainlinegr div { background: rgba(232,223,221,0.75) !important; border-radius: 0px !important; border: 1px solid black !important; }
|
|  |
|
|

Darkseeker
|
Distant- You'll have to insert your own code into these, but you can basically replace both of your ones with: ------------------------------------------- /*Wolf CP Bar, background color, remember to add !important after everything*/ div.progress {background-color:#000!important;} /*Wolf CP Bar, color, wolf health color, familia background color, remember to add !important after everything*/ .progress-bar.text-start {background-color:#000!important;} /*Pack Happiness Bar, background color, remember to add !important after everything*/ div.col-12.mainlineblack.text-center .mainlineblack.text-vs td div {background-color:#000!important;} /*Pack Happiness Bar, color filling, familia health color, remember to add !important after everything*/ div.col-12.mainlineblack.text-center .mainlineblack .mainlineblack tbody tr td div div {background-color:#000!important;background-image:none!important;} ------------------------------------------- Edited at October 3, 2025 04:43 AM by Luma
|
|
|
|

Darkseeker
|
thank you so much 🙌 i'm gonna try this and see if it fixes things.
|
|  |
|