Posted by need CSS help: can't edit some things

loops (#183712)

Maneater
View Forum Posts


Posted on
2024-04-14 08:16:24
sorry if this isn't the right board!
basically i'm making some css and can't seem to edit some things on my live editing extension (amino).
the chatbox (pictured, incase a visual would help)

and the headings underneath the account options panel


as you can probably tell this is my first time editing css so the solution is most likely obvious, but i can't seem to figure it out so help is appreciated! thank you



Hrt Icon 0 players like this post! Like?

Forrest ❅ (#190706)


View Forum Posts


Posted on
2024-04-14 09:43:12
Hey! The chatbox is often glitchy with CSS because it isn't actually part of the page but a link to a chatroom that's imbedded into the page. The best way to make it shows up is to hit "hide" and "show" to reload until it appears right. I usually end up just not coding anything for the chatbox because of how difficult it is.

For the account options heading, I couldn't tell if you meant the orange highlight or the slider headings.

If it's the orange, that is specific to you having the desert layout theme. The solution is not obvious, do not feel bad! I had to sift through inspect elements for a minute to find it. You can fix it by adding this anywhere into your code:
(you can also change the rgba value and make the 0 a 1 if you like having a color there and want to change it)

.table .left a {
background: rgba(1, 1, 1, 0);
}

If it's the slider heading, the label for that is .item-header! For example, you could do:

.item-header {
background: rgba(10, 10, 10, 1);
color: white;
}

If I didn't answer your question right or if you have anything else css-related you need help with feel free to PM or keep replying to this thread, I'm happy to help



Hrt Icon 1 player likes this post! Like?

loops (#183712)

Maneater
View Forum Posts


Posted on
2024-04-14 10:30:41
it worked! thanks so much!!



Hrt Icon 1 player likes this post! Like?







Memory Used: 621.71 KB - Queries: 0 - Query Time: 0.00000 - Total Time: 0.00382s