« Helping each other Forum

Jewel case spinning cd pfp doesnt work :(

i wanted to try this popular layout cause i thought it looked cool but if you go to my profile there's no spinning disc, only the jewel case :( yet i see everyone who uses this layout for them it works. little help?


Report Topic

2 Replies

Sort Replies:

Reply by OxeeCleen

posted

Some where in your code is this:

.profile-pic::before {
  content: "";
  background-image: var(--cd-image);
  position: absolute;
  top: 5px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  z-index: 1;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: left ease 0.5s;

The issue is with the var(--cd-image) for some reason an error is showing that the "--cd-image is not set".

I suggest you check your :root and see if your var(--cd-image) is there.

I hope this helps ^_^



Permalink Report Reply

Reply by Mortino

posted

thank you so much!! i actually checked and the variable was there and the image url was working too. i fixed it replacing var(--cd-image) with just the url of the image instead. weirdly it worked


Permalink Report Reply