Page 1 of 1

layer order is not same in html than wbs

Posted: Fri Jul 19, 2019 4:52 pm
by irvin_robledo
Hi
this problem comes in V.15

if you see the images attached, some images came over the layer4 in the HTML. In the file are under this layer, but at export, it happen.

you can try it at by clicking in any PDF icon (it will open a pdf file in new window, but make visible the layer 4 at same time) in
http://highprecisionsupply.com/tennant/ ... oras.html (this page was modified and exported with v15) if you go to another page as http://highprecisionsupply.com/tennant/barredoras.html, this is not happening (exported with v14)

Image

Image

Re: layer order is not same in html than wbs

Posted: Fri Jul 19, 2019 4:57 pm
by Pablo
Did you try to move the layer to the front with the arrange tools?

Note that I cannot see what you have done based on the HTML code. I need the project file for that.

Re: layer order is not same in html than wbs

Posted: Sat Jul 20, 2019 5:37 pm
by irvin_robledo
you can download the sample project from https://we.tl/t-JuwoD6xvEh

I tried to send to front using the arrange tools, but for soome reason is not working, but if I send the images to back, it works.. but it started to show now other elements above this layer4..

thanks

Re: layer order is not same in html than wbs

Posted: Sat Jul 20, 2019 6:14 pm
by Pablo
The problem is related to the number of objects on the page.
jQuery Dialog (which is a third party script) has a fixed z-index of 101, so if you have more than 100 objects on the page then this will cause a conflict.

You can add the following code to the page HTML (between head tags) to solve this:

Code: Select all

<style>
.ui-dialog
{
   z-index: 9999 !important;
}
</style>

Re: layer order is not same in html than wbs

Posted: Mon Jul 22, 2019 2:14 pm
by irvin_robledo
yes, it works.. thank you Pablo! :D