-1
Goodnight,
I’m developing a website but I’m tired of trying and nothing, the point is:
- I have a contact box fixed on the right side but does not appear, so I read have to define the z-index, I adapted a script I bought on themeforest but it does not appear on the site.
www.agemper.en/new/index.html
Default Basic Script Code
#slideit {
z-index:999999; /* Keep the item above all other elements on the page */
position:fixed;
width: auto; /* Width of the wrapper of the section. Adjust this value if you want wider elements */
height: 100%;
top: 0; /* Vertical position of the elements */
right: 0; /* Horizontal position of the elements */
}
Hugs
put some code... pq so n to solve, unless you forgot to put position: Absolute; where you have z-index
– Matheus Lopes Marques
Put the html and css of the box that does not appear in the question
– Isac
place the html, and css of div pai tbm
– Matheus Lopes Marques
The z-index is OK, the problem is that it is at zero width (you defined it as "auto", and in this context it is not serving for anything). This type of problem is easily visualized by the browser inspector. It is suggested that when asking questions, provide at least one [mcve] in the post. In many cases, by making the example trying to reproduce the problem, you already find the error.
– Bacco