Hi guys,
I am trying to have a background image in my Obsidian, and I found this css code in this thread:
.markdown-preview-view {
z-index: 0;
}
.markdown-preview-view::after {
content: "";
position: absolute;
background-image: url(https://picsum.photos/200);
background-repeat: no-repeat;
background-size: cover;
filter: blur(4px) brightness(50%) saturate(50%);
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: -1;
}
My problem is that I want the image to stay fixed when I scroll, so I changed position: fixed, which did solve the problem. However, now I have weird behavior when I hover pages, and when I click on a plugin page (inside community plugins).
Can someone help (I have no experience with CSS)?
Video:
Thanks 