1 |
|
---|---|
Posted by | Please help! Progress bar colours |
🎀GEII2GE🎀 (#145908) Ill-Natured View Forum Posts Posted on 2019-02-22 17:42:07 |
Hello!!! :D is it possible to individually change the progress bar colours in my den? (so like, energy: purple, hunger: blue etc etc) if that's not possible- what tag do I use to change the progress bar colours as a whole? thank you! <3 0 players like this post! Like? |
_ (#125883)
Resurgent View Forum Posts Posted on 2019-02-22 18:05:50 |
It's not possible to change them altogether, I believe-- however, it may be possible to get them changed only in when in your den page via CSS. I am not sure how you would do that, though, so I'd consider asking someone who's proficient with CSS about it (you can find people in here)! 0 players like this post! Like? |
🎀GEII2GE🎀 (#145908)
Ill-Natured View Forum Posts Posted on 2019-02-25 02:50:20 |
To answer my own question and help others- I found it via 'inspect' function on my browser ^^ Careful, this is long!! hehe Just copy and paste the segments into your code and don't forget to remove the * when putting it in your own CSS or it won't work!! To change energy: .progress-bar-warning {* background: COLOUR HEX !important; *} To change hunger: .progress-bar-danger {* background: COLOUR HEX !important; *} To change EXP: (note* this changes the PROGRESS bar as well. They have the same .tag and can't be individually changed ;c ) .progress-bar-success {* background: COLOUR HEX !important; *} To change IMP: .progress-bar {* background: COLOUR HEX; *} To change the unfilled bar: .progress {* background: #8ca6f5; *} This is all just very simple stuff! Some extra code that changes appearance and makes it extra fancy (check my den for examples ssjsjsks): gradient: background-image: linear-gradient(to right, COLOUR HEX , COLOUR HEX); Glow: box-shadow: 0px 0px 40px 7px COLOUR HEX; Rounded edges: border-radius: 100px; Border: border: 1px solid COLOUR HEX; And thats about it... if anyone needs help with anything, im happy to help as much as i can! :D 0 players like this post! Like? |
1 |
---|