Things I have tried
I found a lot of good pages that helped me make the code in the first place, particularly here. Unfortunately it seems the code only works in preview mode.
Here’s my code:
.view-content .markdown-preview-view::after {
content: "";
position: fixed;
background-image: url(https://wallpaperaccess.com/full/2415294.jpg);
background-repeat: no-repeat;
background-size: cover;
filter: blur(8px) brightness(30%) saturate(40%);
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: -1;
}
And here’s what my workspace looks like:
What I’m trying to do
I’m basically trying to get the background to look like how this user got theirs to look, covering the entire workspace. They had a plugin, however, and mine’s in a custom theme/snippet.
I’m a newb to CSS, but from what I’ve gathered it just has something to do with changing/adding something to the heading (is that the right word? the area that says ".view-content .markdown-preview-view etc)
Thanks for being patient with a coding newb