layer order is not same in html than wbs

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
irvin_robledo
 
 
Posts: 20
Joined: Mon Dec 17, 2012 1:59 am

layer order is not same in html than wbs

Post 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
User avatar
Pablo
 
Posts: 23451
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: layer order is not same in html than wbs

Post 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.
irvin_robledo
 
 
Posts: 20
Joined: Mon Dec 17, 2012 1:59 am

Re: layer order is not same in html than wbs

Post 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
User avatar
Pablo
 
Posts: 23451
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: layer order is not same in html than wbs

Post 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>
irvin_robledo
 
 
Posts: 20
Joined: Mon Dec 17, 2012 1:59 am

Re: layer order is not same in html than wbs

Post by irvin_robledo »

yes, it works.. thank you Pablo! :D
Post Reply