1 |
|
---|---|
Posted by | CSS not working for Chat Box & another questio |
![]() Eviligo (#192392) Impeccable View Forum Posts ![]() Posted on 2024-04-17 04:41:48 |
i made a css for my den and all of it is working fine, except the chat box. it is staying as its original colours. ![]() as you can see everything else is working fine but the colours on the actual chat box arent changing. this is my code for the chat box: ![]() i would really appreciate it if anyone could help me as to why this is happening :) additionally, i was wondering what code would let me change the look of the 'switch account' button. thank you :) ![]() |
ཐིFreyjaཋྀ (#227242)
Sweetheart View Forum Posts ![]() Posted on 2024-04-21 13:06:15 |
These are the exact lines I use for the chat box, copied from Katie (#106445)'s template. /* CHAT */ .s-chat-message:nth-child(even) /* Even Numbered Messages */ { background: rgba(0,0,0,0) !important; color: #000000 !important; border: none !important } .s-chat-message:nth-child(odd) /* Odd Numbered Messages */ { background: rgba(0,0,0,0) !important; color: #000000 !important; border: none !important } .s-chat-message__pinned /* Pinned Message */ { background: rgba(0,0,0,0) !important; color: #000000 !important; border: none !important } .s-chat-message_timestamp /* Timestamps */ { color: #000000 !important; } div#chatMessageContainer { border: none !important; } button#label_currentChannel /* Channel Button ie. Main, Sales */ { background: rgba(0,0,0,0) !important; color: #000000 !important; border: none !important } ![]() |
ཐིFreyjaཋྀ (#227242)
Sweetheart View Forum Posts ![]() Posted on 2024-04-21 13:07:57 |
And this is the code for the switch account button, taken from the same source /* SWITCH ACCOUNT BUTTON */ button.button, button.button:hover { background: rgba(0,0,0,0); border: none !important; border-radius: 0px; text-shadow: none !important; color: #000000 !important } I hope this helps! ![]() |
Eviligo (#192392)
Impeccable View Forum Posts ![]() Posted on 2024-04-21 13:47:48 |
1 |
---|