ExResurrect

Resurrect E/Ex gallery listings

< ExResurrectについてのフィードバック

レート:良 – スクリプトは良好に動作する

§
投稿日: 2024/11/16
編集日: 2024/11/16

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 */
}

§
投稿日: 2024/11/16

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.

返信を投稿

返信を投稿するにはログインしてください。