Logic Machine Forum
Icon placing problem - 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: Icon placing problem (/showthread.php?tid=3882)



Icon placing problem - mkaymak - 18.02.2022

Hi
The objects that I have added to the visualization page have to be very close to each other. Therefore, the user may not be able to click on the correct icon.
Can I place the icons not in rectangular shape , maybe an ellipse shape would be heplful.


RE: Icon placing problem - admin - 18.02.2022

This can done via CSS for round icons that are shown in icon mode (without value). Set Additional classes of required elements to round, add to Custom CSS (Vis. graphics > Edit custom CSS):
Code:
.round {
  border-radius: 50%;
  overflow: hidden;
}
Note that this only work in the visualization viewer but not in the editor.


RE: Icon placing problem - mkaymak - 18.02.2022

Did i correctly setted icons to round ?


RE: Icon placing problem - admin - 18.02.2022

Yes, but your CSS wrong. Copy it as is from my previous post.