LogicMachine Forum
determine size icon object 255 bytes - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: OLD visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: determine size icon object 255 bytes (/showthread.php?tid=1189)



determine size icon object 255 bytes - Daponte - 23.01.2018

Hi,
How can I limit the size of a text icon on a screen of a 255-byte object?


RE: determine size icon object 255 bytes - admin - 23.01.2018

You can set max-width to limit text size via CSS (Additonal classes):
Code:
.myclass {   max-width: 100px;   overflow: hidden;   white-space: nowrap;   text-overflow: ellipsis; }



RE: determine size icon object 255 bytes - Daponte - 24.01.2018

Thank you very much ☺

Hi,

This class does not work for me, it still has an overflow


RE: determine size icon object 255 bytes - admin - 24.01.2018

Check that Additonal classes is set to myclass without leading dot (should not be .myclass)