Open Georgeteeters opened 5 years ago
Hi, i have added a particular script on the background on my gamepanel, but the content is not right above of it. It's actually down below.
Example: Particles Content
I want: Content and particles in the background
I already added the following script but nothing #particles canvas { position: absolute; width: 100%; height: 100%; z-index: -1; }
#particles canvas { position: absolute; width: 100%; height: 100%; z-index: -1; }
You need to target #particles and not the canvas itself. With your code you're sending canvas below your content but no the particles container.
#particles
Hi, i have added a particular script on the background on my gamepanel, but the content is not right above of it. It's actually down below.
Example: Particles Content
I want: Content and particles in the background
I already added the following script but nothing
#particles canvas { position: absolute; width: 100%; height: 100%; z-index: -1; }