I have added an HTML snippet to my index page making some fireworks explode. However, the icons on the page hide the fireworks. I have tried to move the icons "move to back" to try and bring the firework HTML forward "move to front" but to no avail.
Is there a way of making the HTML snippet override all of the icons on the index page so that the fireworks can be seen?
Thanks in advance.
HMTL snippet problem
Re: HMTL snippet problem
"move to front" does not work with custom scripts because the software has no idea how your the code works so it cannot modify it.
You will need to modify the script so it has a higher z-index than all other elements on the page.
You will need to modify the script so it has a higher z-index than all other elements on the page.
Re: HMTL snippet problem
Thanks for the reply.
Not being a "coder" i have no idea how to modify the script to make a higher z-index. Is it possible to make the HTML snippet a higher z-index? If so, how can this be achieved?
Thanks in advance.
Re: HMTL snippet problem
There is no generic answer to this question.
It completely depends on how the code works, so you will need to understand how the code works to be able to modify it.
It completely depends on how the code works, so you will need to understand how the code works to be able to modify it.
Re: HMTL snippet problem *** SOLVED ***
As you suggested the "z-index" needs to be changed in the HTML snippet, i could not find any reference to it at all in the script. So, what i had to do was go through the index page of my site and change every reference to the z-index from each progressive setting back to zero. This now works fine and the fireworks now show over all of the index gfx
Re: HMTL snippet problem
CorrectAs you suggested the "z-index" needs to be changed in the HTML snippet,
Then you will need to add it yourself.i could not find any reference to it at all in the script.
For example, if the firework is created using a div container, then add a z-index to that container.
I do not recommend to change the z-index of the WWB code , it may have 'random' side effects.
Re: HMTL snippet problem
Thank you for your assistancePablo wrote: ↑Tue Dec 18, 2018 12:46 pmCorrectAs you suggested the "z-index" needs to be changed in the HTML snippet,
Then you will need to add it yourself.i could not find any reference to it at all in the script.
For example, if the firework is created using a div container, then add a z-index to that container.
I do not recommend to change the z-index of the WWB code , it may have 'random' side effects.
Re: HMTL snippet problem
Unfortunately, there is no div container in the script.
Re: HMTL snippet problem
Unfortunately, I cannot help you modifying the code. For me, this may also take a lot of time.
But this is not specific for WWB.
But this is not specific for WWB.