2025-08-20, 12:16 PM
(This post was last modified: 2025-08-20, 10:12 PM by AbendrotBarbecue. Edited 1 time in total.)
Hello! CSS Newbie here! I'd like to ask if it's possible at all to change or add a command that changes the background when using the Elegantfin theme to include a background while also including the backdrops? Here's what I'm talking about...
Doesn't actually seem to work, this just looks like regular elegantfin
![[Image: IMG-1668.jpg]](https://i.ibb.co/sJHptjsG/IMG-1668.jpg)
but when I add the !important tag...
it forces over the backdrop, too.
![[Image: IMG-1669.jpg]](https://i.ibb.co/bRKWmtr8/IMG-1669.jpg)
Is there a way to get Elegantfin to replace the colour with an image without eating the backdrop too? Would it be a simple additive command or would I need to change the code of the theme itself? I have looked at the code for elegantfin itself and can't make heads or tails of it beyond the command to change colours (which I will). Any answers appreciated as I have no idea what I'm doing.
Thank you in advance!
Code:
.backgroundContainer {
background-color: rgba(0, 0, 0, 0);
background-image: url('https://wallpapers.com/images/hd/purple-space-background-1920-x-1080-4jj3c9164lcd1o2c.jpg');
filter: blur(4px);
background-size: cover;
}
Doesn't actually seem to work, this just looks like regular elegantfin
![[Image: IMG-1668.jpg]](https://i.ibb.co/sJHptjsG/IMG-1668.jpg)
but when I add the !important tag...
Code:
.backgroundContainer {
background-color: rgba(0, 0, 0, 0);
background-image: url('https://wallpapers.com/images/hd/purple-space-background-1920-x-1080-4jj3c9164lcd1o2c.jpg') !important;
filter: blur(4px);
background-size: cover;
}
it forces over the backdrop, too.
![[Image: IMG-1669.jpg]](https://i.ibb.co/bRKWmtr8/IMG-1669.jpg)
Is there a way to get Elegantfin to replace the colour with an image without eating the backdrop too? Would it be a simple additive command or would I need to change the code of the theme itself? I have looked at the code for elegantfin itself and can't make heads or tails of it beyond the command to change colours (which I will). Any answers appreciated as I have no idea what I'm doing.
Thank you in advance!