Logic Machine Forum
Put objects of a template on top of the page - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Put objects of a template on top of the page (/showthread.php?tid=5538)



Put objects of a template on top of the page - Ceros2112 - 30.07.2024

Hello,
is it possible to put objects from a template on top of every other objects in the page that use the template? I tried wit z-index but it doesn't work.

Thanks.


RE: Put objects of a template on top of the page - admin - 30.07.2024

It's only possible to put the whole layout on top of the plan via CSS:
Code:
.layout {
  z-index: 7;
}



RE: Put objects of a template on top of the page - Ceros2112 - 30.07.2024

Ok, so if I have widgets on the pages and not on the layout basically I can't use it, right?

Thanks for your help


RE: Put objects of a template on top of the page - admin - 30.07.2024

Can you provide an image of what you want to achieve?


RE: Put objects of a template on top of the page - Ceros2112 - 30.07.2024

Basically I would like to have a simple page like that (it's just a scheme)

   

That when I press a button on the side menu cover the portion with the widget with another color and deactivate the widgets like that

   

Everything works fine except for the cover part


RE: Put objects of a template on top of the page - admin - 30.07.2024

If you link a menu item with a widget then the widget contents will be placed on top everything else because widgets are placed on a separate layer that has higher z-index than plan and layout.


RE: Put objects of a template on top of the page - Ceros2112 - 30.07.2024

Yes, but the menu is on a layout and the widgets are on a page