This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

determine size icon object 255 bytes
#1
Hi,
How can I limit the size of a text icon on a screen of a 255-byte object?
Reply
#2
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;
}
Reply
#3
Thank you very much

Hi,

This class does not work for me, it still has an overflow
Reply
#4
Check that Additonal classes is set to myclass without leading dot (should not be .myclass)
Reply


Forum Jump: