Move to front

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
Joel
 
 
Posts: 131
Joined: Thu Sep 23, 2010 10:10 am
Location: Australia
Contact:

Move to front

Post by Joel »

Please, have a look at http://www.baretouch.com.au/what-works-for-what.html, put ginger for example in the search box at the top and tell me how to make the jQuery dialog move to the front?

I think I tried everything. There used to be a function where I could give it a high number to stay on top but can't do it now. On some pages I don't have the problem http://www.baretouch.com.au/new-concept ... roach.html, on some I do. Simple 'move to front' does not correct it.
bkjohns
 
 
Posts: 293
Joined: Wed Nov 14, 2018 5:54 pm

Re: Move to front

Post by bkjohns »

Do you have transparency applied to the dialog?
Joel
 
 
Posts: 131
Joined: Thu Sep 23, 2010 10:10 am
Location: Australia
Contact:

Re: Move to front

Post by Joel »

No, it is set to solid white.
User avatar
Pablo
 
Posts: 21707
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Move to front

Post by Pablo »

You can force the dialog to be in front of everything else by adding this code between the head tags of Page HTML

Code: Select all

<style>
.ui-dialog {
    z-index: 9999 !important;
}
</style>
Also, note that there is an error in the jQuery Theme name. It should not have white spaces.
Related FAQ:
http://www.wysiwygwebbuilder.com/forum/ ... 10&t=64868
Joel
 
 
Posts: 131
Joined: Thu Sep 23, 2010 10:10 am
Location: Australia
Contact:

Re: Move to front

Post by Joel »

I changed the name, copied the code in and now the page is completely blank :shock:
User avatar
Pablo
 
Posts: 21707
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Move to front

Post by Pablo »

Maybe you have copied it to wrong place?
Page HTML -> Between head tags

Note that after changing the name you will need to republish all files.
Joel
 
 
Posts: 131
Joined: Thu Sep 23, 2010 10:10 am
Location: Australia
Contact:

Re: Move to front

Post by Joel »

Pablo, checked a few times, republished, check yourself http://www.baretouch.com.au/what-works-for-what.html
User avatar
Pablo
 
Posts: 21707
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Move to front

Post by Pablo »

The added code is invalid, it should be:

Code: Select all

<style>
.ui-dialog {
    z-index: 9999 !important;
}
</style>
Joel
 
 
Posts: 131
Joined: Thu Sep 23, 2010 10:10 am
Location: Australia
Contact:

Re: Move to front

Post by Joel »

Thank you!

I couldn't copy and paste, it didn't work. Had to type in but it works now :D
Post Reply