Change object value positioning - 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: Change object value positioning (/showthread.php?tid=1137) |
Change object value positioning - suporte.arqtech - 15.12.2017 Hello, How could I change the position of object´s value when the display mode is "Icon and Value". I need to do something like the image: BR, Jefferson RE: Change object value positioning - admin - 15.12.2017 Add additional CSS class myclass to required object, then add this to Custom CSS (in Vis. graphics): Code: .myclass .value { margin-top: -30px; } RE: Change object value positioning - suporte.arqtech - 15.12.2017 Thanks, it work as I needed. I´m new into programming, so there´s some documentation about the CSS use in logic machine? Something that describes how obtain the parameters that will affect the objects and other graphical elements as the trends. e.g how can be found the class that will change the color of an element. BR, Jefferson RE: Change object value positioning - admin - 15.12.2017 Use built-in browser dev tools - press F12 or right click > inspect element. |