Logic Machine Forum
Custom slider position and design in visualization - 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: Custom slider position and design in visualization (/showthread.php?tid=1355)



Custom slider position and design in visualization - Jayce - 25.04.2018

Hello once again,

Is there any way to make it so after I click on object (lightbulb) in the visualization the slider menu appears in the very bottom-right corner? Also if yes, how do I customize the pop-up slider box or the slider itself?

Thanks in advance.


RE: Custom slider position and design in visualization - Daniel - 25.04.2018

Hi
with popover elements we can't use Additional class but you can change position for all of the sliders like that in Custom CSS

Code:
.popover.control.control-slider-h.slider-h.show{
 margin-left: 300px;
 margin-top: -30px;
}

BR


RE: Custom slider position and design in visualization - Jayce - 25.04.2018

works fine, thank you.