ExResurrect

Resurrect E/Ex gallery listings

< Feedback op ExResurrect

Recensie: Goed - het script werkt zoals het hoort

§
Geplaatst: 16-11-2024
Bijgewerkt: 16-11-2024

Great work! Currently, there are two issues. One is the thumbnail issue mentioned in the previous review; the solution can be found at https://sleazyfork.org/scripts/411277-exresurrect/discussions/265510.
The other is that the div id="menu" is sometimes obscured by the div id="gleft", making the "Custom Search" button unclickable.
To fix this: add a new line starting at line 505 of the script, adding the content z-index: 1000;
as shown below:

#menu {
font-size: 10pt;
padding: 0.5em 0 0 0;
margin: 3px 5px 5px 0px;
position: relative;
display: inline-block;
width: 100%;
border-top: 1px solid #000;
z-index: 1000; /* <- Add this line */
}

§
Geplaatst: 16-11-2024

The principle is that the z-index property controls the stacking order of elements.The larger the value, the closer the element is to the user and the higher up it is displayed.

Reactie plaatsen

Log in om antwoord te geven.